-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 1.03 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
{
"name": "es6-starter-kit",
"version": "0.1.0",
"description": "",
"main": "lib/index.js",
"scripts": {
"build": "npm-run-all clean test transpile",
"clean": "rimraf lib",
"coverage": "nyc mocha --require babel-core/register --recursive",
"transpile": "babel src -d lib",
"preversion": "npm run build",
"postversion": "git push && git push --tags",
"test": "npm-run-all lint test:unit",
"test:unit": "mocha --require babel-core/register --recursive"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mjstahl/es6-starter-kit.git"
},
"author": "Mark Stahl <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mjstahl/es6-starter-kit/issues"
},
"homepage": "https://github.com/mjstahl/es6-starter-kit#readme",
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-latest": "^6.16.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"npm-run-all": "^1.7.0",
"nyc": "^8.1.0",
"rimraf": "^2.5.2"
},
"dependencies": {}
}