forked from ideal-postcodes/postcodes.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
90 lines (90 loc) · 2.35 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
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "postcodes.io",
"version": "9.0.2",
"description": "A postcode lookup API",
"main": "app.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "NODE_ENV=test npm run test:create && npm run nyc_mocha && NODE_ENV=test npm run test:clear && npm run lint",
"nyc_mocha": "NODE_ENV=test NO_RELOAD_DB=true node_modules/.bin/nyc node_modules/.bin/mocha tests/ -R spec --exit",
"coverage": "node_modules/.bin/nyc report --reporter=text-lcov | node_modules/.bin/coveralls || true",
"start": "node server.js",
"setup": "./bin/setup.sh",
"rebuild_support_tables": "./bin/rebuild_support_tables.js",
"setup_test_db": "./bin/setup_test.sh",
"test:seed": "./bin/generate_test_data.js",
"test:create": "./bin/createTestDb.sh",
"test:clear": "./bin/clearTestDb.sh",
"lint": "./node_modules/.bin/jshint .",
"ejs": "./node_modules/.bin/ejs-cli"
},
"bin": {
"postcodesio-onspd": "./bin/import.js",
"postcodesio-oson": "./bin/import_oson.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ideal-postcodes/postcodes.io.git"
},
"keywords": [
"postcode",
"api",
"uk",
"ordnance",
"survey"
],
"author": "Chris Blanchard",
"license": "MIT",
"bugs": {
"url": "https://github.com/ideal-postcodes/postcodes.io/issues"
},
"nyc": {
"exclude": [
"bin",
"tests",
"public"
]
},
"dependencies": {
"async": "~2.6.1",
"body-parser": "~1.18.3",
"bunyan": "~1.8.12",
"commonlog-bunyan": "~0.4.3",
"cors": "~2.8.4",
"csv": "~1.1.0",
"csv-parse": "~3.0.0",
"ejs": "https://registry.npmjs.org/ejs/-/ejs-2.5.7.tgz",
"escape-string-regexp": "~1.0.5",
"express": "~4.16.3",
"minimist": "~1.2.0",
"morgan": "~1.9.0",
"node.extend": "~2.0.0",
"ospoint": "~0.2.0",
"pg": "~7.4.3",
"pg-copy-streams": "~1.2.0",
"pg-query-stream": "~1.1.1",
"pmx": "~1.6.7",
"postcode": "~0.2.5",
"prompt": "~1.0.0",
"random-string": "~0.2.0",
"serve-favicon": "~2.5.0",
"string": "~3.3.3"
},
"devDependencies": {
"chai": "~4.1.2",
"coveralls": "~3.0.1",
"ejs-cli": "~2.0.1",
"jshint": "~2.9.5",
"mocha": "~5.2.0",
"mocha-lcov-reporter": "~1.3.0",
"nyc": "~12.0.2",
"supertest": "~3.3.0"
},
"greenkeeper": {
"ignore": [
"csv"
]
}
}