forked from des-des/reactive-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.33 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
{
"name": "es6-boilerplate",
"version": "0.0.1",
"description": "Boilerplate for running transpiled tests fast",
"main": "lib/app.js",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.5.1",
"babel-istanbul": "^0.6.0",
"babel-preset-es2015": "^6.5.0",
"hapi": "^13.0.0",
"inert": "^3.2.0",
"rx": "^4.0.8",
"tap-notify": "0.0.3",
"tap-spec": "^4.1.1",
"tape": "^4.4.0"
},
"scripts": {
"test": "npm run _test:cov && npm run _test:cov-check",
"build": "babel src -d lib",
"dev:build": "babel src -d ./ -w",
"dev:test": "npm run _dev:test:build & npm run _dev:test:watch",
"_test:cov": "babel-node ./node_modules/.bin/babel-istanbul cover tape test/**.test.js",
"_test:cov-check": "./node_modules/.bin/babel-istanbul check-coverage",
"_dev:test:watch": "nodemon -q -C --watch .test_build --exec \"npm run _dev:test:run\"",
"_dev:test:run": "tape .test_build/test/**.test.js | tap-notify | tap-spec",
"_dev:test:build": "npm run _dev:test:build:test & npm run _dev:test:build:source",
"_dev:test:build:test": "babel test -d .test_build/test -w",
"_dev:test:build:source": "babel src -d .test_build/src -w"
},
"keywords": [
"babel",
"boilerplate",
"es6",
"tape",
"testing",
"es2015"
],
"author": "Eoin McCarthy",
"license": "ISC"
}