-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.71 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
{
"name": "node-bb",
"version": "2.0.11",
"description": "Simple node bable boilerplate which includes steps: watch, build, test, serve",
"main": "index.js",
"scripts": {
"start": "gulp clean && NODE_ENV=development gulp",
"build": "gulp clean && gulp build",
"serve": "gulp clean && gulp serve",
"lint": "gulp lint",
"test": "mocha --compilers js:babel-register",
"prepublish": "gulp clean && gulp prepublish",
"postinstall": "node build/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crashbell/node-bb.git"
},
"keywords": [
"node",
"babel",
"boilerplate"
],
"author": "An Nguyen",
"license": "MIT",
"bugs": {
"url": "https://github.com/crashbell/node-bb/issues"
},
"homepage": "https://github.com/crashbell/node-bb#readme",
"dependencies": {
"babel-cli": "^6.16.0",
"babel-eslint": "^7.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-plugin-transform-function-bind": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.21.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-2": "^6.17.0",
"babel-register": "^6.16.3",
"del": "^2.2.2",
"eslint": "^3.7.1",
"eslint-config-standard": "^6.2.0",
"eslint-plugin-babel": "^3.3.0",
"eslint-plugin-import": "^2.0.0",
"eslint-plugin-promise": "^3.0.0",
"eslint-plugin-standard": "^2.0.1",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-eslint": "^3.0.1",
"gulp-load-plugins": "^1.3.0",
"gulp-nodemon": "^2.2.1",
"mocha": "^3.1.0",
"nodemon": "^1.11.0"
},
"files": [
"build"
]
}