-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "modulex-promise",
"version": "1.1.7",
"description": "ES6-compatible promise library. Promise/A+ implementation.",
"author": "yiminghe <[email protected]>",
"engines": {
"node": ">=0.10"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "http://github.com/modulex/promise.git"
},
"devDependencies": {
"aggregate-bower": "^1.0.10",
"async": "~0.9.0",
"expect.js": "~0.3.1",
"gulp": "^3.8.7",
"gulp-clean": "^0.3.1",
"gulp-filter": "^1.0.0",
"gulp-footer": "^1.0.5",
"gulp-header": "^1.0.5",
"gulp-jscs": "^1.1.0",
"gulp-jshint": "^1.8.4",
"gulp-kclean": "~0.0.15",
"gulp-modulex": "~2.0.0",
"gulp-rename": "^1.2.0",
"gulp-replace": "^0.4.0",
"gulp-uglify": "^0.3.1",
"gulp-util": "^3.0.0",
"gulp-wrapper": "^0.1.5",
"jshint": "^2.5.5",
"jshint-stylish": "^0.4.0",
"precommit-hook": "^1.0.7",
"rc-server": "^1.4.4",
"saucelabs-runner": "^2.2.0"
},
"precommit": [
"lint"
],
"config": {
"port": 8015
},
"spm": {
"devDependencies": {
"expect.js": "0.3.1",
"async": "0.9.0"
}
},
"scripts": {
"saucelabs": "DEBUG=saucelabs-runner gulp saucelabs",
"lint": "gulp lint",
"start": "node --harmony node_modules/.bin/rc-server",
"publish": "gulp tag",
"test": "node --harmony ./node_modules/rc-server/node_modules/mocha/bin/mocha --harmony -R list tests/node/specs",
"browser-test": "mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html",
"browser-test-cover": "mocha-phantomjs -R node_modules/rc-server/node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"
}
}