forked from stealjs/steal-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
128 lines (128 loc) · 3.33 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
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "steal-tools",
"description": "Futuristic build tools for ES6 Module applications.",
"version": "1.0.1",
"author": {
"name": "Bitovi",
"email": "[email protected]",
"web": "http://bitovi.com/"
},
"dependencies": {
"chokidar": "^1.0.1",
"clean-css": "3.4.18",
"colors": "^0.6.2",
"engine-dependencies": "^0.2.0",
"find-line-column": "^0.5.2",
"fs-extra": "~0.29.0",
"glob": "^7.1.1",
"is-appveyor": "^1.0.0",
"lodash": "^4.3.0",
"moment": "^2.10.2",
"pdenodeify": "^0.1.0",
"bitovi-source-map": "0.4.2-bitovi.2",
"steal": "^1.0.1",
"steal-bundler": "^0.3.0",
"system-parse-amd": "0.0.2",
"through2": "^2.0.0",
"tmp": "0.0.26",
"traceur": "0.0.91",
"transpile": "^1.0.0",
"uglify-js": "~2.4.13",
"urix": "^0.1.0",
"winston": "^2.2.0",
"ws": "^1.0.0",
"yargs": "^4.3.2"
},
"devDependencies": {
"bower": "1.3.8",
"browserify": "~8.1.0",
"comparify": "git://github.com/bitovi/comparify#master",
"connect": "^2.14.4",
"coveralls-send": "0.0.2",
"cssify": "^0.6.0",
"jshint": "~2.9.1",
"istanbul": "^0.4.2",
"jquery": "^2.0.0",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"mock-fs": "3.1.0",
"mockery": "^1.4.1",
"rimraf": "^2.5.2",
"tree-kill": "^1.0.0"
},
"peerDependencies": {
"steal-conditional": "^0.2.0",
"steal-css": "^1.0.0",
"steal-qunit": "^1.0.0",
"testee": "^0.2.0"
},
"engineDependencies": {
"node": {
"0.10.x": {
"devDependencies": {
"zombie": "^3.1.1",
"es6-promise": "^2.0.0"
}
},
"0.12.x": {
"dependencies": {
"fs-extra": "~0.16.3"
},
"devDependencies": {
"zombie": "^3.1.1"
}
},
"4.x.x": {
"devDependencies": {
"zombie": "^3.1.1"
}
},
"^5.0.0": {
"devDependencies": {
"zombie": "^4.2.1"
}
},
"^6.0.0": {
"devDependencies": {
"zombie": "^4.2.1"
}
}
}
},
"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": {
"postinstall": "install-engine-dependencies",
"test": "npm run mocha && npm run test:browser",
"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",
"bower-install": "bower install",
"install-engine-dependencies": "install-engine-dependencies",
"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"
},
"engines": {
"node": "0.10.x - 0.12.x || ^3.0.0 || 4.x - 6.0.x"
},
"system": {
"npmDependencies": [
"steal-qunit",
"steal-css"
]
}
}