forked from PhrontHQ/mod
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 4.4 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
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "mod",
"version": "24.0.0",
"description": "mod native-web, native-like apps your own.",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/PhrontHQ/mod.git"
},
"main": "montage",
"engines": {
"node": ">=20.0.0",
"npm": ">=10.5.0"
},
"overlay": {
"browser": {
"main": "core/core",
"redirects": {
"montage": "core/core"
},
"mappings": {
"mr": {
"name": "mr",
"location": "core/mr"
},
"bluebird": {
"name": "bluebird",
"location": "node_modules/bluebird"
}
}
},
"node": {
"main": "core/core",
"redirects": {
"montage": "core/core"
},
"mappings": {
"mr": {
"name": "mr",
"location": "core/mr"
},
"bluebird": {
"name": "bluebird",
"location": "node_modules/bluebird"
}
}
}
},
"production": true,
"dependencies": {
"bluebird": "~3.7.2",
"fast-url-parser": "~1.1.3",
"htmlparser2": "~3.0.5",
"ical.js": "~1.4.0",
"just-kebab-case": "^4.0.1",
"object-sizeof": "^1.5.2",
"strange": "github:montagejs/js-strange#master"
},
"devDependencies": {
"concurrently": "^3.4.0",
"http-server": "^14.1.0",
"jasmine-console-reporter": "^1.2.7",
"jasmine-core": "^3.99.1",
"jasmine-node": "montagestudio/jasmine-node#master",
"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",
"marked": "^3.0.7",
"open": "0.0.5",
"peggy": "^4.0.3",
"pegjs": "git://github.com/pegjs/pegjs.git",
"xhr2": "^0.1.4"
},
"scripts": {
"test-mr": "node core/mr/test/run-node.js",
"lint-mr": "jshint core/mr",
"integration": "MONTAGE_VERSION=${MONTAGE_VERSION:=./} MOP_VERSION=${MOP_VERSION:=#master} node node_modules/mop-integration/integration",
"integration-debug": "node --inspect-brk=9229 node_modules/mop-integration/integration.js",
"test-mr:karma": "karma start --no-auto-watch --single-run",
"test-mr:karma-dev": "karma start --auto-watch --no-single-run",
"test-mr:jasmine": "concurrently \"http-server -p 8081 core/mr\" \"open http://localhost:8081/test/run.html\"",
"test-mr:demo": "concurrently \"http-server -a localhost -p 8082 core/mr\" \"open http://localhost:8082/demo/\"",
"test": "node test/run-node.js",
"jsdoc": "jsdoc -c jsdoc.json",
"start:demo": "concurrently \"http-server -p 8084\" \"open http://localhost:8084/demo/\"",
"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\"",
"test-collections": "node core/collections/test/run-node.js",
"test-frb": "jasmine-node core/frb/spec",
"build-frb-parser": "pegjs --allowed-start-rules expression,sheet core/frb/grammar.pegjs",
"peggy-build-frb-parser": "peggy --allowed-start-rules expression,sheet -o core/frb/grammar-peggy.js core/frb/grammar.pegjs",
"size": "t=\"$(npm pack .)\"; wc -c \"${t}\"; tar tvf \"${t}\"; rm \"${t}\";"
},
"bin": {
"mr": "core/mr/bin/mr"
},
"exclude": [
"demo",
"report",
"doc",
"test",
"tools"
]
}