UNPKG

2.46 kBJSONView Raw
1{
2 "name": "@zambezi/ez-build",
3 "main": "lib/ez-build.js",
4 "bin": {
5 "ez-build": "bin/ez-build.js"
6 },
7 "version": "0.7.3",
8 "description": "The Zambezi build process",
9 "devDependencies": {
10 "babel-cli": "6.23.0",
11 "babel-plugin-istanbul": "4.0.0",
12 "babel-register": "6.23.0",
13 "bats": "0.4.2",
14 "codecov": "1.0.1",
15 "deep-equal": "1.0.1",
16 "depcheck": "0.6.7",
17 "js-combinatorics": "0.5.2",
18 "nyc": "10.1.2",
19 "tape": "4.6.3",
20 "tape-async": "2.1.1"
21 },
22 "dependencies": {
23 "@zambezi/babel-plugin-transform-es2015-modules-umd": "^6.18.2",
24 "ansicolors": "0.3.2",
25 "babel-core": "^6.23.1",
26 "babel-plugin-add-module-exports": "^0.2.1",
27 "babel-polyfill": "^6.23.0",
28 "babel-preset-env": "1.1.8",
29 "babel-preset-react": "^6.23.0",
30 "babel-preset-stage-0": "^6.22.0",
31 "babel-preset-stage-1": "^6.22.0",
32 "babel-preset-stage-2": "^6.22.0",
33 "babel-preset-stage-3": "^6.22.0",
34 "chokidar": "1.6.1",
35 "commander": "2.9.0",
36 "funkis": "0.2.0",
37 "glob": "7.1.1",
38 "mkdirp": "0.5.1",
39 "pino": "4.0.0",
40 "pkginfo": "0.4.0",
41 "postcss": "^5.2.14",
42 "postcss-cssnext": "^2.9.0",
43 "postcss-import": "^9.1.0",
44 "postcss-url": "^6.3.1",
45 "read-package-json": "2.0.4",
46 "source-map-support": "0.4.11",
47 "strip-ansi": "3.0.1",
48 "thenify": "3.2.1",
49 "window-size": "0.3.0",
50 "write-file-atomic": "1.3.1"
51 },
52 "scripts": {
53 "build": "babel src -d lib --source-maps",
54 "build:dev": "npm run build -- --watch",
55 "build:cov": "BABEL_ENV=cov npm run build",
56 "depcheck": "depcheck . --ignores-dirs=lib --ignores=babel-register,babel-plugin-istanbul",
57 "prepublish": "npm run depcheck && npm run build",
58 "test": "npm run test:unit && npm run test:cli",
59 "test:unit": "tape -r babel-register -r ./lib/polyfill test/unit/**/*.test.js",
60 "test:cli": "bats test/cli/*.bats",
61 "cov": "npm run build:cov && npm run cov:unit && npm run cov:cli",
62 "cov:unit": "nyc npm run test:unit && nyc report && nyc report --reporter=text-lcov > unit.lcov",
63 "cov:cli": "nyc npm run test:cli && nyc report && nyc report --reporter=text-lcov > cli.lcov",
64 "cov:upload": "codecov"
65 },
66 "license": "MIT",
67 "repository": {
68 "type": "git",
69 "url": "git@github.com:zambezi/ez-build.git"
70 },
71 "engines": {
72 "node": ">=4"
73 },
74 "nyc": {
75 "all": true,
76 "silent": true,
77 "instrument": false,
78 "sourceMap": false
79 }
80}