-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 2.25 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
{
"name": "lazy-assert",
"version": "0.2.13",
"description": "An way of doing assertion for lazy people ...",
"main": "src/index.js",
"bin": {
"lazy-refresh": "src/scripts/refresh-actual-and-suggest.js",
"lazy-remove": "src/scripts/remove-actual-and-suggest.js"
},
"scripts": {
"postinstall": "node examples/5-nightwatch/nightwatch.config.js",
"test-normal": "./node_modules/mocha/bin/mocha examples/1-mocha/__test/**/*.test.js",
"test-webpack": "./node_modules/.bin/mocha-webpack --webpack-config examples/2-mocha-webpack-es6/webpack.config.test.js examples/2-mocha-webpack-es6/__test/**/*.test.js",
"test-react": "./node_modules/.bin/mocha-webpack --require examples/setup-jsdom.js --webpack-config examples/3-mocha-webpack-react/webpack.config.test.js examples/3-mocha-webpack-react/__test/**/*.test.js",
"test-api": "./node_modules/mocha/bin/mocha examples/4-mocha-test-api/__test/**/*.test.js",
"test-nightwatch": "node node_modules/nightwatch/bin/nightwatch -c examples/5-nightwatch/nightwatch.config.js",
"test-compared-with-chai": "./node_modules/mocha/bin/mocha examples/6-compared-with-chai/__test/**/*.test.js",
"test": "./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha src/**/__test/*.test.js src/__test/*.test.js",
"test-lazy": "./node_modules/.bin/mocha src/**/__test/*.test.js src/__test/*.test.js",
"open-cover": "open ./coverage/lcov-report/index.html"
},
"author": "Liang",
"license": "MIT",
"devDependencies": {
"axios": "^0.16.2",
"babel-core": "^6.25.0",
"babel-loader": "^7.0.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.3.2",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"body-parser": "^1.17.2",
"chai": "^4.1.1",
"enzyme": "^2.9.1",
"express": "^4.15.4",
"istanbul": "^0.4.5",
"jsdom": "^11.2.0",
"mocha": "^3.5.0",
"mocha-webpack": "next",
"nightwatch": "^0.9.16",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-test-renderer": "^15.6.1",
"selenium-download": "^2.0.10",
"sinon": "^3.2.1",
"webpack": "^3.5.5",
"webpack-node-externals": "^1.6.0"
}
}