-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.79 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.79 KB
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
60
61
62
63
{
"name": "gocool",
"main": "dist/index.js",
"version": "0.2.2",
"description": "A Node Framework With Best Practices",
"scripts": {
"prepublish": "npm run build",
"build": "rimraf dist && babel lib -s -D -d dist",
"test": "PORT=4000 nyc mocha --compilers js:babel-core/register -r test/init --recursive test -t 10000",
"lint": "eslint .",
"changelog": "standard-changelog"
},
"repository": {
"type": "git",
"url": "git+https://github.com/imheretw/gocool.git"
},
"keywords": [
"Node",
"Framework"
],
"author": "imheretw",
"license": "ISC",
"bugs": {
"url": "https://github.com/imheretw/gocool/issues"
},
"homepage": "https://github.com/imheretw/gocool#readme",
"dependencies": {
"body-parser": "^1.17.1",
"compression": "^1.6.2",
"cookie-parser": "^1.4.3",
"debug": "^2.6.4",
"eventemitter2": "^4.1.0",
"express": "^4.15.2",
"helmet": "^3.5.0",
"passport": "^0.3.2",
"strong-params": "^0.7.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-eslint": "^7.2.2",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-es2016": "^6.24.1",
"babel-preset-es2017": "^6.24.1",
"chai": "^3.5.0",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^14.1.0",
"eslint-plugin-chai-expect": "^1.1.1",
"eslint-plugin-chai-friendly": "^0.3.3",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-jsx-a11y": "^4.0.0",
"eslint-plugin-mocha": "^4.9.0",
"eslint-plugin-react": "^6.10.3",
"factory-girl": "^4.2.2",
"mocha": "^3.2.0",
"nyc": "^10.2.0",
"rimraf": "^2.6.1",
"sinon": "^2.1.0",
"sinon-chai": "^2.9.0",
"standard-changelog": "^1.0.1"
}
}