-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1018 Bytes
/
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
{
"name": "s2polyline-ts",
"version": "1.0.1",
"description": "Encoding/decoding S2 polylines for JavaScript",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc && webpack --mode production",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepare": "npm run build",
"deploy": "gh-pages -d dist",
"start": "webpack serve --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/regeter/s2polyline-ts.git"
},
"keywords": [
"s2",
"geometry",
"polyline",
"encoding",
"decoding"
],
"author": "Reto Egeter",
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^27.0.0",
"gh-pages": "^6.3.0",
"html-webpack-plugin": "^5.6.3",
"jest": "^27.0.0",
"ts-jest": "^27.0.0",
"ts-loader": "^9.0.0",
"typescript": "^4.5.0",
"webpack": "^5.0.0",
"webpack-cli": "^4.0.0",
"webpack-dev-server": "^4.0.0"
}
}