-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
123 lines (123 loc) · 4.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "es2017-babel-starter",
"version": "0.1.0",
"description": "Author libraries in ES2016 / ES7 for Node.",
"author": "Joshua Wiens <d3viant0ne> (https://github.com/d3viant0ne)",
"license": "MIT",
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"benchmark": "babel-node benchmark",
"benchmark:test": "cross-env NODE_ENV=test mocha -R spec 'tests/**/*.benchmark.js' --compilers js:babel-register --check-leaks",
"benchmark:watch": "nodemon src/index.js --exec babel-node benchmark",
"prebuild": "npm run clean:dist",
"build": "cross-env NODE_ENV=production babel -s true src -d dist",
"start": "npm run serve:dev src",
"serve:dev": "nodemon $2 --exec babel-node",
"serve:dist": "nodemon dist/index.js",
"debug": "nodemon src/index.js --exec babel-node --debug",
"clean": "npm run clean:dist && npm run clean:reports && npm run clean:coverage",
"clean:coverage": "shx rm -rf coverage",
"clean:dist": "shx rm -rf dist",
"clean:reports": "shx rm -rf reports",
"precoverage": "npm run clean:coverage",
"coverage": "cross-env NODE_ENV=test babel-istanbul cover src/*.js _mocha --report lcovonly -- -R spec 'tests/**/*.spec.js'",
"coverage:check": "cross-env NODE_ENV=test babel-istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100",
"coverage:ci": "cross-env NODE_ENV=test npm run coverage && codecov",
"lint": "eslint src tests benchmark",
"lint:fix": "eslint --fix src",
"premonitor": "npm run clean:dist && npm run build",
"monitor": "nodejs-dashboard node dist",
"security:test": "nsp",
"serve": "node dist",
"setenv:dev": "npm config set production false",
"setenv:prod": "npm config set production true",
"tasks": "ntl",
"pretest": "npm run clean:coverage && npm run clean:reports",
"test": "cross-env NODE_ENV=test mocha -c -S -R spec 'tests/**/*.spec.js' --compilers js:babel-register --check-leaks",
"test:report": "cross-env NODE_ENV=test mocha -S -R mochawesome 'tests/**/*.spec.js' --compilers js:babel-register --reporter-options reportDir=reports --check-leaks",
"test:watch": "cross-env NODE_ENV=test npm test -- -w",
"prerelease": "npm run setenv:prod && npm run clean && npm run build && npm run lint && npm run test && npm run coverage && npm run setenv:dev",
"release": "standard-version",
"postrelease": "npm run setenv:prod && git push --follow-tags origin master && npm run setenv:dev",
"prepublish": "npm run setenv:prod && npm run clean && npm run build && npm run lint && npm run test && npm run coverage",
"publish": "npm publish --access public",
"postpublish": "greenkeeper-postpublish && npm run setenv:dev",
"travis:lint": "yarn run lint",
"travis:benchmark": "yarn run benchmark",
"travis:test": "yarn run coverage"
},
"dependencies": {},
"devDependencies": {
"babel-cli": "6.22.2",
"babel-istanbul": "0.12.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-babili": "0.0.10",
"babel-preset-es2015": "6.22.0",
"babel-preset-es2015-node6": "0.4.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.22.0",
"babili": "0.0.10",
"benchmark": "2.1.3",
"chai": "3.5.0",
"codecov": "1.0.1",
"cross-env": "3.1.4",
"eslint": "3.14.0",
"eslint-config-standard": "6.2.1",
"greenkeeper-postpublish": "1.0.1",
"mocha": "3.2.0",
"mocha-junit-reporter": "1.13.0",
"mochawesome": "2.0.2",
"nodejs-dashboard": "0.3.0",
"nodemon": "1.11.0",
"ntl": "1.1.3",
"shx": "0.2.2",
"sinon": "1.17.7",
"sinon-chai": "2.8.0",
"nsp": "2.6.2",
"standard-version": "4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/d3viant0ne/es2017-babel-starter.git"
},
"homepage": "https://github.com/d3viant0ne/es2017-babel-starter",
"bugs": {
"url": "https://github.com/d3viant0ne/es2017-babel-starter/issues"
},
"babel": {
"presets": [
"es2015-node6",
"stage-0"
],
"env": {
"production": {
"plugins": [
"add-module-exports"
],
"presets": [
"babili",
"es2015"
]
}
}
},
"eslintConfig": {
"extends": "standard",
"installedESLint": true
},
"engines": {
"node": ">= 6"
},
"keywords": [
"babel",
"starter",
"boilerplate",
"node",
"ES7",
"ECMAScript 7",
"ECMAScript 2016"
]
}