-
Notifications
You must be signed in to change notification settings - Fork 214
/
package.json
104 lines (104 loc) · 3.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "montage",
"version": "18.0.0",
"description": "Build your next application with a browser based platform that really gets the web.",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/montagejs/montage.git"
},
"main": "montage",
"engines": {
"node": ">=10.16.2",
"npm": ">=6.9.0"
},
"overlay": {
"browser": {
"main": "core/core",
"redirects": {
"montage": "core/core"
},
"mappings": {
"mr": {
"name": "mr",
"location": "node_modules/mr"
},
"bluebird": {
"name": "bluebird",
"location": "node_modules/bluebird"
}
}
},
"node": {
"main": "core/core",
"redirects": {
"montage": "core/core"
},
"mappings": {
"mr": {
"name": "mr",
"location": "node_modules/mr"
},
"bluebird": {
"name": "bluebird",
"location": "node_modules/bluebird"
}
}
}
},
"production": true,
"dependencies": {
"bluebird": "~3.5.5",
"collections": "~5.1.x",
"frb": "~4.0.x",
"htmlparser2": "~3.0.5",
"q-io": "^1.13.3",
"mr": "montagejs/mr#master",
"weak-map": "^1.0.5",
"lodash.kebabcase": "^4.1.1",
"lodash.camelcase": "^4.3.0",
"lodash.trim": "^4.5.1",
"lodash.snakecase": "^4.1.1",
"proxy-polyfill": "~0.1.7"
},
"devDependencies": {
"concurrently": "^3.4.0",
"http-server": "^0.10.0",
"xhr2": "^0.1.4",
"jasmine-console-reporter": "^1.2.7",
"jasmine-core": "^2.5.2",
"jshint": "^2.9.5",
"karma": "^4.2.0",
"karma-chrome-launcher": "^3.0.0",
"karma-coverage": "^1.1.2",
"karma-firefox-launcher": "^1.2.0",
"karma-ie-launcher": "^1.0.0",
"karma-jasmine": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"montage-testing": "git://github.com/montagejs/montage-testing.git#master",
"mop-integration": "git://github.com/montagejs/mop-integration.git#master",
"open": "0.0.5"
},
"scripts": {
"test": "node test/run-node.js",
"jsdoc": "jsdoc -c jsdoc.json",
"start:demo": "concurrently \"http-server -p 8084\" \"open http://localhost:8084/demo/\"",
"integration": "MONTAGE_VERSION=${MONTAGE_VERSION:=./} MOP_VERSION=${MOP_VERSION:=#master} node node_modules/mop-integration/integration",
"lint": "jshint .",
"test:karma": "karma start --no-auto-watch --single-run",
"test:karma-travis": "karma start --no-auto-watch --single-run --browsers=Chrome_travis_ci",
"test:karma-firefox": "karma start --no-auto-watch --single-run --browsers=Firefox",
"test:karma-chrome": "karma start --no-auto-watch --single-run --browsers=Chrome",
"test:karma-debug": "karma start --auto-watch --no-single-run --browsers=PhantomJS_debug",
"test:karma-dev": "karma start --auto-watch --no-single-run --capture",
"test:jasmine": "concurrently \"http-server -p 8085\" \"open http://localhost:8085/test/run.html\""
},
"exclude": [
"demo",
"report",
"doc",
"test",
"tools"
]
}