This repository has been archived by the owner on Dec 22, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
53 lines (53 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
{
"name": "webpack-canary",
"version": "1.0.6",
"description": "Canary tooling for checking webpack dependencies against specific webpack versions",
"main": "./dist/canary/index.js",
"bin": {
"canary": "./dist/canary/index.js",
"squawk": "./dist/squawk/index.js"
},
"scripts": {
"test": "mocha \"./canary/**/*.spec.js\" --compilers js:babel-core/register --check-leaks",
"watch": "mocha \"./canary/**/*.spec.js\" --watch --compilers js:babel-core/register --check-leaks",
"lint": "eslint canary",
"squawk": "node ./squawk.js --config=squawk/webpack-canary.example.conf.js",
"build:canary": "babel canary/ --out-dir dist/canary",
"build:squawk": "babel squawk/ --out-dir dist/squawk",
"clean": "[[ -d dist ]] && rm -r dist || true",
"build": "npm-run-all clean build:*",
"prepublish": "npm run build"
},
"author": "Alistair Brown <[email protected]> (http://alistairjcbrown.com/)",
"license": "MIT",
"dependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-preset-env": "^1.6.0",
"babel-register": "^6.26.0",
"chalk": "^2.1.0",
"cli-table2": "^0.2.0",
"gauge": "^2.7.4",
"glob-promise": "^3.2.0",
"lodash": "^4.17.4",
"npm-run-all": "^4.1.1",
"rmfr": "^1.0.3",
"semver": "^5.4.1",
"yargs": "^9.0.1"
},
"devDependencies": {
"babel-core": "^6.26.0",
"chai": "^4.1.2",
"eslint": "^4.7.2",
"eslint-config-webpack": "^1.2.5",
"eslint-plugin-import": "^2.7.0",
"mocha": "^3.5.3",
"proxyquire": "^1.8.0",
"sinon": "^3.3.0",
"sinon-chai": "^2.13.0",
"sinon-promise": "^0.1.3"
},
"engines": {
"node": ">=4.3.0 <5.0.0 || >=5.10"
}
}