-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.41 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
{
"name": "graphhopper-ts-client",
"version": "0.1.1",
"description": "A GraphHopper API client written in TypeScript",
"keywords": ["GraphHopper", "Map"],
"main": "./dist/esm2015/optimization-client.js",
"module": "./dist/esm5/gh-optimization-client.bundle.js",
"es2015": "./dist/esm2015/optimization-client.js",
"types": "dist/types/index.d.ts",
"scripts": {
"build": "./node_modules/.bin/webpack --config webpack.prod.ts && tsc --target es2018 --outDir dist/esm2015",
"start": "./node_modules/.bin/webpack-dev-server --open --config webpack.dev.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "./node_modules/.bin/webpack --display-error-details --config webpack.dev.ts --watch"
},
"author": {
"name": "Massimo Siani",
"url": "https://github.com/massimosiani"
},
"license": "ISC",
"files": ["dist/**/*"],
"dependencies": {
"superagent": "^4.0.0"
},
"devDependencies": {
"@types/clean-webpack-plugin": "^0.1.2",
"@types/node": "^10.12.18",
"@types/superagent": "^3.8.5",
"@types/webpack": "^4.4.22",
"@types/webpack-merge": "^4.1.3",
"clean-webpack-plugin": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"ts-loader": "^5.3.2",
"ts-node": "^7.0.1",
"tslint": "^5.12.0",
"typescript": "^3.2.2",
"webpack": "^4.28.2",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.1.5"
}
}