-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 1.3 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
{
"name": "node-es6-boilerplate",
"version": "0.0.1",
"description": "Boilerplate for Node.js projects with lint, transpile and test configurations",
"main": "./build/index.js",
"scripts": {
"babel-node": "babel-node --",
"build": "./node_modules/.bin/babel src -d build",
"dist": "./node_modules/.bin/babel src -d dist --presets=babili",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aharshac/node-es6-boilerplate.git"
},
"keywords": [
"nodejs",
"boilerplate",
"es6",
"es2015",
"babel",
"mocha",
"lint"
],
"author": "Harsha Alva",
"license": "MIT",
"bugs": {
"url": "https://github.com/aharshac/node-es6-boilerplate/issues"
},
"homepage": "https://github.com/aharshac/node-es6-boilerplate#readme",
"dependencies": {
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-es2015-destructuring": "^6.23.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-node": "^6.1.1",
"babili": "^0.1.3",
"eslint": "^4.0.0",
"mocha": "^3.4.2",
"power-assert": "^1.4.4"
}
}