-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.42 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.42 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
{
"name": "wheatlessinv2",
"version": "1.0.0",
"description": "",
"main": "server.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "DEBUG='wheatlessinv2*' mocha",
"coveralls": "istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage",
"start": "DEBUG='wheatlessinv2*' node server.js",
"lint": "eslint server.js test/**/*.js route/**/*.js model/**/*.js lib/**/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jmpaik/wheatlessinv2.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jmpaik/wheatlessinv2/issues"
},
"homepage": "https://github.com/jmpaik/wheatlessinv2#readme",
"dependencies": {
"aws-sdk": "^2.7.21",
"bcryptjs": "^2.4.0",
"bluebird": "^3.4.7",
"body-parser": "^1.15.2",
"cors": "^2.8.1",
"debug": "^2.6.0",
"del": "^2.2.2",
"dotenv": "^2.0.0",
"express": "^4.14.0",
"google-geocoder": "^0.1.4",
"http-errors": "^1.5.1",
"jsonwebtoken": "^7.2.1",
"mongoose": "^4.7.6",
"morgan": "^1.7.0",
"multer": "^1.2.1"
},
"devDependencies": {
"aws-sdk-mock": "^1.6.1",
"chai": "^3.5.0",
"coveralls": "^2.11.15",
"eslint": "^3.13.1",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"superagent": "^3.3.1"
}
}