-
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.47 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.47 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": "api-npmjs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"start": "TZ='utc' node server.js",
"lint": "eslint *.js ./controllers ./helper ./lib ./middlewares ./test",
"test": "TZ='utc' mocha --recursive test/",
"test:unit": "mocha --recursive test/unit",
"cover": "npm run lint && istanbul cover node_modules/.bin/_mocha -- -R spec test/**/*"
},
"author": "Shweta Sabne <shwetasabne@gmail.com> (http://www.shwetasabne.com)",
"license": "ISC",
"dependencies": {
"boom": "^4.3.1",
"bunyan": "^1.8.1",
"bunyan-middleware": "^0.4.0",
"config": "^1.21.0",
"debug": "^2.2.0",
"express": "^4.14.0",
"express-bunyan-logger": "^1.3.1",
"moment": "^2.15.1",
"npm-registry": "^0.1.13",
"swagger-tools": "^0.10.1"
},
"repository": {
"type": "git",
"url": "https://github.com/shwetasabne/api-npmjs.git"
},
"bugs": {
"url": "https://github.com/shwetasabne/api-npmjs/issues"
},
"devDependencies": {
"async": "^2.1.4",
"chai": "^3.5.0",
"eslint": "^3.5.0",
"eslint-config-airbnb": "^11.1.0",
"eslint-plugin-import": "^1.15.0",
"eslint-plugin-json": "^1.2.0",
"eslint-plugin-jsx-a11y": "^2.2.2",
"eslint-plugin-react": "^6.4.1",
"istanbul": "^0.4.5",
"lodash": "^4.16.4",
"mocha": "^3.1.0",
"moment-range": "^2.2.0",
"moment-timezone": "^0.5.7",
"proxyquire": "^1.7.10",
"rewire": "^2.5.2",
"sinon": "^1.17.6"
}
}