forked from xmppjs/xmpp.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.37 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
{
"private": true,
"devDependencies": {
"ava": "^0.18.2",
"babel-polyfill": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.23.0",
"browserify": "^14.1.0",
"coveralls": "^2.11.16",
"istanbul": "^0.4.5",
"lerna": "2.0.0-beta.37",
"mocha": "^3.2.0",
"mocha-phantomjs-core": "^2.1.1",
"pem": "^1.9.4",
"phantomjs-prebuilt": "^2.1.14",
"should": "^11.2.0",
"sinon": "^1.17.7",
"standard": "^8.6.0"
},
"scripts": {
"ava": "ava",
"ava:integration": "ava -v test/ava/**/*.js",
"postinstall": "npm run bootstrap",
"lint": "standard",
"unit": "mocha --recursive packages/*/test/ -t 5000",
"bootstrap": "lerna bootstrap",
"bundle": "lerna run bundle",
"integration": "mocha --recursive test/integration -t 5000",
"test": "npm run unit && npm run ava && npm run lint",
"coverage": "istanbul cover _mocha --report lcovonly -- -R spec --recursive packages/*/test/ -t 5000",
"coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage",
"test:browser": "phantomjs ./node_modules/mocha-phantomjs-core/mocha-phantomjs-core.js http://localhost:8000/test/browser/ spec '{\"ignoreResourceErrors\": true}'"
},
"ava": {
"require": "babel-register",
"babel": "inherit",
"files": [
"packages/*/ava/*.js",
"packages/*/ava/unit/**/*.js"
]
}
}