-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.42 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
{
"name": "kar-traffic-fines",
"version": "1.0.1",
"description": "Simple JSON API to fetch traffic fines for any KA registered vehicle.",
"main": "app.js",
"scripts": {
"start": "node app.js",
"serve": "nodemon app.js",
"lint": "eslint ./",
"test": "ava",
"test-dev": "ava --watch",
"coverage-dev": "nyc ava",
"coverage": "nyc --reporter=text-summary > coverage.lcov ava",
"prerelease": "npm run lint",
"release": "standard-version"
},
"ava": {
"serial": false,
"files": [
"./test/*.spec.js"
],
"require": [
"esm"
],
"timeout": "10s",
"verbose": true
},
"keywords": [
"node",
"nodejs",
"traffic-fines",
"karnataka"
],
"author": "nikhilnagaraju96@gmail.com",
"license": "GPL-2.0-only",
"dependencies": {
"axios": "^0.19.2",
"body-parser": "^1.19.0",
"express": "^4.17.1",
"morgan": "^1.10.0",
"response-time": "^2.3.2"
},
"devDependencies": {
"ava": "^3.7.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-ava": "^10.2.0",
"eslint-plugin-extra-rules": "0.0.0-development",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"esm": "^3.2.25",
"nodemon": "^2.0.3",
"nyc": "^15.0.1",
"standard-version": "^7.1.0",
"supertest": "^4.0.2"
}
}