-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
114 lines (114 loc) · 3.75 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
{
"name": "steal-tools",
"description": "Futuristic build tools for ES6 Module applications.",
"version": "2.2.0",
"author": {
"name": "Bitovi",
"email": "[email protected]",
"web": "http://bitovi.com/"
},
"dependencies": {
"babel-minify": "^0.5.0",
"babel-standalone": "^6.23.1",
"bitovi-source-map": "0.4.2-bitovi.2",
"chokidar": "^2.0.0",
"clean-css": "^4.1.9",
"colors": "^1.2.1",
"common-tags": "^1.7.2",
"find-line-column": "^0.5.2",
"fs-extra": "~7.0.0",
"glob": "^7.1.1",
"globby": "^8.0.1",
"gzip-size": "4.0.0",
"is-appveyor": "^1.0.0",
"lodash": "^4.17.0",
"loose-envify": "^1.3.1",
"moment": "^2.10.2",
"multimatch": "^2.1.0",
"normalize-path": "^2.1.1",
"object.entries": "^1.0.4",
"pdenodeify": "^0.1.0",
"prettier": "1.12.0",
"pump": "^3.0.0",
"rollup-plugin-commonjs": "^9.1.3",
"steal": "^2.2.0",
"steal-bundler": "^0.3.6",
"steal-parse-amd": "^1.0.0",
"steal-rollup": "^0.58.4",
"terser": "^3.17.0",
"through2": "^3.0.0",
"tmp": "0.0.33",
"traceur": "0.0.111",
"transpile": "^2.7.0",
"urix": "^0.1.0",
"winston": "^2.2.0",
"ws": "^5.1.1",
"yargs": "^11.0.0"
},
"devDependencies": {
"babel-plugin-steal-test": "0.0.2",
"babel-preset-steal-test": "0.0.1",
"browserify": "~16.1.1",
"comparify": "git://github.com/bitovi/comparify.git#master",
"connect": "^3.6.5",
"coveralls-send": "0.0.2",
"cssify": "^1.0.3",
"istanbul": "^0.4.2",
"jquery": "^3.1.1",
"jshint": "~2.9.1",
"mocha": "^3.5.3",
"mocha-lcov-reporter": "^1.2.0",
"mock-fs": "4.4.1",
"mockery": "^2.0.0",
"rimraf": "^2.6.2",
"serve-static": "^1.12.6",
"steal-conditional": "^1.1.0",
"steal-css": "^1.3.1",
"steal-less": "^1.3.1",
"steal-qunit": "^1.0.0",
"testee": "^0.8.0",
"tree-kill": "^1.2.0",
"zombie": "^5.0.6"
},
"bin": {
"steal-tools": "bin/steal"
},
"main": "index",
"homepage": "http://stealjs.com/",
"repository": {
"type": "git",
"url": "git://github.com/stealjs/steal-tools.git"
},
"licenses": [
{
"type": "MIT",
"url": "http://opensource.org/licenses/mit-license.php"
}
],
"scripts": {
"test": "npm run mocha && npm run test:browser && npm run test:slim-worker-single && npm run test:slim-worker-progressive && npm run test:exports-worker",
"test:browser": "npm run worker-test-build && testee test/browser/test.html --browsers firefox --reporter Spec",
"worker-test-build": "node bin/steal build --main worker --config test/browser/webworker/stealconfig.js --bundle-steal --quiet",
"mocha": "mocha test/test.js",
"jshint": "jshint lib/**/*.js Gruntfile.js --config",
"coverage": "istanbul cover _mocha -- test/test --timeout 600000",
"coverage:upload": "istanbul cover _mocha --report lcovonly -- test/test --timeout 600000 && cat ./coverage/lcov.info | ./node_modules/coveralls-send/bin/coveralls.js",
"test:slim-worker-single": "node test/slim/worker/single/build.js && testee test/slim/worker/single/worker.html --browsers firefox --reporter Spec",
"test:slim-worker-progressive": "node test/slim/worker/progressive/build.js && testee test/slim/worker/progressive/worker.html --browsers firefox --reporter Spec",
"test:slim-worker-shared": "node test/slim/shared_bundles/build.js && testee test/slim/shared_bundles/worker.html --browsers firefox --reporter Spec",
"test:exports-worker": "node test/exports_worker/exports.js && testee test/exports_worker/worker.html --browsers firefox --reporter Spec"
},
"engines": {
"node": "4.x - 10.x"
},
"system": {
"npmDependencies": [
"steal-qunit"
]
},
"greenkeeper": {
"ignore": [
"traceur"
]
}
}