-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.41 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@zambezi/ez-build",
"main": "lib/ez-build.js",
"bin": {
"ez-build": "bin/ez-build.js"
},
"version": "0.8.0",
"description": "The Zambezi build process",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-istanbul": "4.1.5",
"babel-register": "6.26.0",
"bats": "0.4.2",
"codecov": "3.0.0",
"deep-equal": "1.0.1",
"depcheck": "0.6.8",
"js-combinatorics": "0.5.3",
"nyc": "11.3.0",
"tape": "4.8.0",
"tape-async": "2.3.0"
},
"dependencies": {
"@zambezi/babel-plugin-transform-es2015-modules-umd": "^6.18.2",
"ansicolors": "0.3.2",
"babel-core": "^6.23.1",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "1.6.1",
"babel-preset-react": "^6.23.0",
"babel-preset-stage-0": "^6.22.0",
"babel-preset-stage-1": "^6.22.0",
"babel-preset-stage-2": "^6.22.0",
"babel-preset-stage-3": "^6.22.0",
"chokidar": "1.7.0",
"commander": "2.12.2",
"funkis": "0.2.0",
"glob": "7.1.2",
"mkdirp": "0.5.1",
"pino": "4.10.2",
"pkginfo": "0.4.1",
"postcss": "^6.0.14",
"postcss-cssnext": "^3.0.2",
"postcss-import": "^11.0.0",
"postcss-url": "^7.3.0",
"read-package-json": "2.0.12",
"source-map-support": "0.5.0",
"strip-ansi": "4.0.0",
"thenify": "3.3.0",
"window-size": "1.1.0",
"write-file-atomic": "2.3.0"
},
"scripts": {
"build": "babel src -d lib --source-maps",
"build:dev": "npm run build -- --watch",
"build:cov": "BABEL_ENV=cov npm run build",
"depcheck": "depcheck . --ignores-dirs=lib --ignores=babel-register,babel-plugin-istanbul",
"prepublish": "npm run depcheck && npm run build",
"test": "npm run test:unit && npm run test:cli",
"test:unit": "tape -r babel-register -r ./lib/polyfill test/unit/**/*.test.js",
"test:cli": "bats test/cli/*.bats",
"cov": "npm run build:cov && npm run cov:unit && npm run cov:cli",
"cov:unit": "nyc npm run test:unit && nyc report && nyc report --reporter=text-lcov > unit.lcov",
"cov:cli": "nyc npm run test:cli && nyc report && nyc report --reporter=text-lcov > cli.lcov",
"cov:upload": "codecov"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:zambezi/ez-build.git"
},
"engines": {
"node": ">=4"
},
"nyc": {
"all": true,
"silent": true,
"instrument": false,
"sourceMap": false
}
}