-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
59 lines (59 loc) · 2.11 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
{
"name": "originator",
"version": "0.1.1",
"description": "node module originator with test & ci pipeline",
"license": "MIT",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/zanuka/originator.git"
},
"author": {
"name": "zanuka",
"url": "https://github.com/zanuka"
},
"scripts": {
"watch": "node_modules/.bin/babel src -d lib --experimental -w",
"clean": "rimraf lib build coverage",
"lint": "eslint src",
"ci": "babel-node test/*.test.js && zuul -- test/*.test.js",
"compile": "babel --stage 0 -d lib/ src/",
"build": "npm run clean && babel --optional runtime -d build src",
"test": "babel-node node_modules/.bin/blue-tape test/*.test.js | tspec",
"cover": "npm run compile && babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/blue-tape ./lib/*.js --report text-summary",
"report": "npm run compile && babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/blue-tape ./lib/*.js --report html && open ./coverage/index.html",
"coveralls": "npm run compile && babel-node node_modules/.bin/babel-istanbul cover node_modules/.bin/blue-tape ./lib/*.js --report lcovonly && cat ./coverage/lcov.info | coveralls",
"postcoveralls": "rimraf coverage",
"postpublish": "git push origin master --follow-tags",
"deploy": "git pull --rebase origin master && git push origin master",
"zuul": "babel-node test/*.test.js && zuul --local 9966 -- test/*.test.js"
},
"bugs": {
"url": "https://github.com/zanuka/originator/issues"
},
"keywords": [
"es6",
"node",
"module",
"starter"
],
"homepage": "https://github.com/zanuka/originator#readme",
"devDependencies": {
"babel": "5.8.23",
"babel-core": "5.8.33",
"babel-eslint": "4.1.3",
"babel-istanbul": "^0.12.2",
"babelify": "6.3.0",
"blue-tape": "0.1.10",
"coveralls": "2.11.4",
"eslint": "^6.1.0",
"eslint-config-xo": "0.7.1",
"eslint-plugin-babel": "2.1.1",
"rimraf": "2.4.3",
"tap-spec": "4.1.0",
"zuul": "^3.12.0"
},
"dependencies": {
"babel-runtime": "^6.0.14"
}
}