-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.16 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
{
"name": "babel-node-starter",
"version": "0.0.1",
"description": "A very basic boilerplate to start node projects that compile with babel.",
"main": "lib/index.js",
"scripts": {
"start": "node lib/index.js",
"compile": "./node_modules/.bin/babel --presets es2015 -d lib/ src/",
"test": "npm run lint && BABEL_ENV=TEST ./node_modules/.bin/mocha --recursive test/ --compilers js:babel-core/register",
"lint": "./node_modules/.bin/eslint src/ test/",
"prepublish": "npm run compile",
"install": "npm run compile"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Prismatik/babel-node-starter.git"
},
"author": "Nick Matenaar <[email protected]> (http://nickmatenaar.com/)",
"license": "ISC",
"bugs": {
"url": "https://github.com/Prismatik/babel-node-starter/issues"
},
"homepage": "https://github.com/Prismatik/babel-node-starter#readme",
"devDependencies": {
"babel-cli": "^6.4.0",
"babel-core": "^6.4.0",
"babel-eslint": "^4.1.6",
"babel-plugin-rewire": "^1.0.0-beta-3",
"babel-preset-es2015": "^6.3.13",
"chai": "^3.4.1",
"eslint": "^1.10.3",
"mocha": "^2.3.4"
}
}