forked from ideal-postcodes/postcodes.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 1.97 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
{
"name": "postcodes.io",
"version": "6.0.1",
"description": "A postcode lookup API",
"main": "app.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "NODE_ENV=test ./bin/createTestDb.sh && NODE_ENV=test NO_RELOAD_DB=true node_modules/.bin/mocha tests/ -R spec && NODE_ENV=test ./bin/clearTestDb.sh",
"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 ."
},
"bin": {
"onsParseCode": "./bin/raw_code_parsing.js",
"onsFindMissing": "./bin/find_missing.js",
"onsImport": "./bin/import.js",
"osPlaceImport": "./bin/import_places.js",
"onsUpdate": "./bin/update_ons.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"
},
"dependencies": {
"async": "~1.5.0",
"body-parser": "~1.17.0",
"bunyan": "~1.8.5",
"commonlog-bunyan": "~0.4.3",
"cors": "~2.8.1",
"csv": "~1.1.0",
"csv-parse": "~1.2.0",
"escape-string-regexp": "~1.0.5",
"express": "~4.15.0",
"jade": "~1.11.0",
"minimist": "~1.2.0",
"morgan": "~1.8.0",
"node.extend": "~1.1.3",
"ospoint": "~0.2.0",
"pg": "~6.2.2",
"pg-copy-streams": "~1.2.0",
"pg-query-stream": "~1.0.0",
"pmx": "~0.6.8",
"postcode": "~0.2.5",
"prompt": "~0.2.14",
"random-string": "~0.2.0",
"serve-favicon": "~2.4.0",
"string": "~3.3.1"
},
"devDependencies": {
"chai": "~4.1.0",
"jshint": "~2.9.4",
"mocha": "~3.3.0",
"supertest": "~3.0.0"
}
}