forked from g0vhk-io/hk-address-parser-lib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.71 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
{
"name": "hk-address-parser-lib",
"version": "0.3.0",
"description": "The library for the HKAddressParser project",
"author": "",
"license": "",
"keywords": [
"hk",
"land",
"geo-coding",
"search",
"map"
],
"main": "dist/hk-address-parser.cjs.js",
"module": "dist/hk-address-parser.esm.js",
"browser": "dist/hk-address-parser.min.js",
"dependencies": {
"cross-fetch": "^3.0.1",
"@turf/turf": "^5.1.6",
"proj4": "^2.5.0"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.3.4",
"@babel/register": "^7.0.0",
"@babel/runtime": "^7.3.4",
"@turf/turf": "^5.1.6",
"async": "^2.6.2",
"bluebird": "^3.5.3",
"chai": "^4.2.0",
"commander": "^2.19.0",
"fast-csv": "^2.4.1",
"md5": "^2.2.1",
"mocha": "^6.0.2",
"moment": "^2.24.0",
"nyc": "^14.1.0",
"proj4": "^2.5.0",
"rollup": "^1.6.0",
"rollup-plugin-commonjs": "^9.2.1",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-resolve": "^4.0.1",
"rollup-plugin-terser": "^4.0.4",
"semver": ">=4.3.2",
"sinon": "^7.2.7"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -c -w",
"test": "BABEL_ENV=test nyc mocha --require @babel/register",
"test_accuracy": "npm run build && node accuracy_test/full_test.js",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md"
},
"files": [
"dist"
]
}