-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 732 Bytes
/
Copy pathpackage.json
File metadata and controls
36 lines (36 loc) · 732 Bytes
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
{
"name": "cb-node",
"version": "1.0.0",
"description": "A simple node call list",
"main": "server.js",
"start": "server.js",
"scripts": {
"test": "ava",
"lint": "standard",
"validate": "npm ls",
"dev": "chokidar '**/*.js' -c 'standard && ava'"
},
"repository": {
"type": "git",
"url": "https://github.com/AHIOS/cb-node.git"
},
"author": "",
"license": "ISC",
"dependencies": {
"body-parser": "^1.16.1",
"ejs": "^2.5.5",
"express": "^4.14.1",
"mongojs": "^2.4.0"
},
"devDependencies": {
"ava": "^0.18.1",
"chokidar-cli": "^1.2.0",
"precommit-hook": "^3.0.0",
"standard": "^8.6.0"
},
"pre-commit": [
"lint",
"validate",
"test"
]
}