forked from ideal-postcodes/postcodes.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.86 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
{
"name": "postcodes.io",
"version": "3.0.0",
"description": "A postcode lookup API",
"main": "server.js",
"directories": {
"test": "tests"
},
"scripts": {
"test": "NODE_ENV=test ./bin/createTestDb.sh && NODE_ENV=test NO_RELOAD_DB=true 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"
},
"bin": {
"onsParseCode": "./bin/raw_code_parsing.js",
"onsFindMissing": "./bin/find_missing.js",
"onsImport": "./bin/import.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.15.0",
"bunyan": "~1.8.1",
"bunyan-syslog": "~0.3.1",
"commonlog-bunyan": "~0.4.3",
"cors": "~2.7.1",
"csv": "~0.3.6",
"csv-parse": "~1.0.0",
"express": "~4.14.0",
"jade": "~1.9.2",
"minimist": "~1.1.1",
"morgan": "~1.7.0",
"node.extend": "~1.1.3",
"ospoint": "~0.2.0",
"pg": "~5.1.0",
"pg-copy-streams": "~1.1.0",
"pg-query-stream": "~1.0.0",
"pmx": "~0.6.1",
"postcode": "~0.2.4",
"prompt": "~0.2.14",
"random-string": "~0.1.1",
"serve-favicon": "~2.3.0",
"string": "~3.3.1"
},
"devDependencies": {
"chai": "~1.9.0",
"iconv": "~2.1.11",
"mocha": "~1.20.0",
"supertest": "~0.13.0"
}
}