-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 2.3 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
{
"name": "boundary.now",
"version": "1.0.0",
"description": "a simple interface to download data from Nominatim geocoding results",
"main": "index.js",
"scripts": {
"prebuild": "npm run test",
"build": "webpack --config webpack/webpack.config.prod.js",
"build-dev": "webpack --config webpack/webpack.config.dev.js",
"watch": "webpack --config webpack/webpack.config.dev.js --watch",
"test": "mocha test/**/*.test.ts --require ts-node/register --require reflect-metadata"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haoliangyu/boundary.now.git"
},
"author": "Haoliang Yu <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haoliangyu/boundary.now/issues"
},
"homepage": "https://github.com/haoliangyu/boundary.now#readme",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/mocha": "^2.2.39",
"chai": "^3.5.0",
"css-loader": "^6.7.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^0.10.0",
"html-webpack-plugin": "^5.5.0",
"less": "^2.7.2",
"less-loader": "^11.1.0",
"mocha": "^3.5.3",
"optimize-css-assets-webpack-plugin": "^6.0.1",
"optimize-js-plugin": "^0.0.4",
"raw-loader": "^0.5.1",
"script-ext-html-webpack-plugin": "^1.8.3",
"style-loader": "^0.13.1",
"to-string-loader": "^1.2.0",
"ts-loader": "^2.2.2",
"ts-node": "^3.2.0",
"tslint": "^4.4.2",
"tslint-loader": "^3.4.2",
"typescript": "^2.4.1",
"url-loader": "^0.5.7",
"webpack": "^1.15.0",
"webpack-cleanup-plugin": "^0.4.2"
},
"dependencies": {
"@angular/common": "^2.4.7",
"@angular/compiler": "^2.4.7",
"@angular/core": "^11.0.5",
"@angular/flex-layout": "2.0.0-beta.5",
"@angular/forms": "^2.4.7",
"@angular/http": "^2.4.7",
"@angular/material": "2.0.0-beta.2",
"@angular/platform-browser": "^2.4.7",
"@angular/platform-browser-dynamic": "^2.4.7",
"@types/es6-shim": "^0.31.32",
"@types/file-saver": "^0.0.0",
"@types/jszip": "0.0.32",
"@types/leaflet": "^1.0.65",
"file-saver": "^1.3.3",
"font-awesome": "^4.7.0",
"jszip": "^3.7.0",
"leaflet": "^1.1.0",
"reflect-metadata": "^0.1.9",
"rxjs": "^5.4.2",
"shp-write": "^0.3.2",
"tokml": "^0.4.0",
"zone.js": "^0.7.7"
}
}