forked from aharshac/node-es6-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.19 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
{
"name": "node-es6-boilerplate",
"version": "1.0.0",
"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 minify",
"test": "./node_modules/.bin/mocha --compilers js:babel-core/register --reporter spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chriptus13/node-es6-boilerplate.git"
},
"keywords": [
"nodejs",
"boilerplate",
"es6",
"es2015",
"babel",
"mocha",
"lint"
],
"author": "Chriptus",
"license": "MIT",
"bugs": {
"url": "https://github.com/chriptus13/node-es6-boilerplate/issues"
},
"homepage": "https://github.com/chriptus13/node-es6-boilerplate#readme",
"dependencies": {
"dotenv": "^8.2.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2015-node": "^6.1.1",
"babel-preset-minify": "^0.5.1",
"eslint": "^4.0.0",
"mocha": "^3.4.2"
}
}