forked from webpack-contrib/webpack-canary
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 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
{
"name": "webpack-canary",
"version": "1.0.0",
"description": "Canary tooling for checking webpack dependencies against specific webpack versions",
"main": "index.js",
"scripts": {
"test": "mocha \"./lib/**/*.spec.js\" --compilers js:babel-core/register --check-leaks",
"watch": "mocha \"./lib/**/*.spec.js\" --watch --compilers js:babel-core/register --check-leaks",
"lint": "eslint lib",
"squawk": "node ./squawk.js"
},
"author": "Alistair Brown <[email protected]> (http://alistairjcbrown.com/)",
"license": "ISC",
"dependencies": {
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.24.1",
"chalk": "^2.0.1",
"cli-table2": "^0.2.0",
"gauge": "^2.7.4",
"glob-promise": "^3.1.0",
"lodash": "^4.17.4",
"semver": "^5.4.1",
"yargs": "^8.0.2"
},
"devDependencies": {
"babel-core": "^6.25.0",
"chai": "^4.1.1",
"eslint": "^4.3.0",
"mocha": "^3.5.0",
"proxyquire": "^1.8.0",
"sinon": "^2.4.1",
"sinon-chai": "^2.12.0",
"sinon-promise": "^0.1.3"
}
}