-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.11 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "areaapi",
"version": "1.0.0",
"description": "FCC Area API - Node.js",
"main": "app.js",
"scripts": {
"start": "npm cache clean && npm install && node app.js",
"test": "mocha ./test/**/test-*.js || exit 0",
"cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha ./test/**/test-*.js || exit 0",
"lint": "./node_modules/.bin/eslint controllers/area.js app.js || exit 0",
"lint-fix": "./node_modules/.bin/eslint controllers/area.js app.js --fix || exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FCC/gisp-areaapi-node"
},
"keywords": [
"fcc",
"area",
"block",
"county",
"state",
"MTA",
"BTA",
"API",
"node"
],
"author": "FCC",
"license": "",
"bugs": {
"url": "https://github.com/FCC/gisp-areaapi-node"
},
"homepage": "https://github.com/FCC/gisp-areaapi-node",
"dependencies": {
"bluebird": "^3.4.6",
"body-parser": "^1.13.2",
"cors": "^2.7.1",
"dotenv": "^2.0.0",
"express": "^4.13.1",
"file-stream-rotator": "0.0.6",
"helmet": "^2.3.0",
"htmlencode": "0.0.4",
"js2xmlparser": "^0.1.9",
"morgan": "^1.6.1",
"pg-promise": "^6.5.0"
},
"devDependencies": {
"autoprefixer-core": "^6.0.1",
"bootstrap": "^3.3.7",
"chai": "^3.5.0",
"eslint": "^6.6.0",
"eslint-config-google": "^0.7.1",
"font-awesome": "^4.7.0",
"grunt": "^1.0.1",
"grunt-autoprefixer": "^3.0.4",
"grunt-banner": "^0.6.0",
"grunt-browserify": "^5.0.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-less": "^1.4.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-postcss": "^0.8.0",
"grunt-string-replace": "^1.3.1",
"istanbul": "0.4.0",
"jquery": "^3.2.1",
"jshint": "^2.9.4",
"jshint-stylish": "^2.2.1",
"load-grunt-tasks": "^3.5.2",
"mocha": "^3.0.0",
"nodemon": "^1.10.0",
"sinon": "^1.17.6",
"supertest": "^2.0.0",
"time-grunt": "^1.4.0"
}
}