-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 888 Bytes
/
package.json
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
{
"name": "short-url-service",
"version": "0.0.1",
"description": "short url service",
"main": "index.js",
"scripts": {
"start": "node index",
"test": "eslint . && nyc node test && nyc report --reporter=lcov"
},
"dependencies": {
"@azure/cosmos": "^2.1.2",
"bunyan": "^1.8.12",
"bunyan-format": "^0.2.1",
"compression": "^1.7.2",
"connect": "^3.6.6",
"cuid": "^2.1.1",
"js-yaml": "^3.13.1",
"request": "^2.87.0",
"swagger-tools": "^0.10.3",
"shortid": "^2.2.12"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"nyc": "^11.9.0",
"supertest": "^1.2.0",
"tape": "^4.9.1"
},
"keywords": [
"short url service"
],
"author": "",
"license": "ISC"
}