-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 840 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 840 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
{
"name": "recipe-api",
"version": "0.0.1",
"description": "",
"main": "index.js",
"scripts": {
"start": "./node_modules/babel/bin/babel-node.js ./source/index.js",
"test": "npm run lint && ./node_modules/babel/bin/babel-node.js ./tests/* | ./node_modules/faucet/bin/cmd.js",
"lint": "./node_modules/standard/bin/cmd.js ."
},
"author": "",
"license": "ISC",
"devDependencies": {
"babelify": "^6.3.0",
"eslint": "^1.7.1",
"eslint-config-standard": "^4.4.0",
"eslint-config-standard-react": "^1.1.0",
"eslint-plugin-standard": "^1.3.1",
"faucet": "0.0.1",
"standard": "^5.3.1",
"tape": "^4.2.1"
},
"dependencies": {
"arsenic-logger": "^0.4.14",
"babel": "^5.8.23",
"bluebird": "^2.10.2",
"boom": "^2.9.0",
"hapi": "^9.0.2",
"mongoose": "^4.1.11"
}
}