forked from rapideditor/rapid-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 929 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 929 Bytes
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
{
"name": "id-sdk",
"version": "3.0.0-pre.0",
"description": "Map editing made easy",
"repository": "ideditor/id-sdk",
"license": "ISC",
"contributors": [
"Bryan Housel <bhousel@gmail.com>"
],
"keywords": [
"map",
"editor"
],
"private": true,
"devDependencies": {
"@babel/core": "^7.5.4",
"@babel/preset-env": "^7.5.4",
"@types/d3-polygon": "^1.0.7",
"@types/geojson": "^7946.0.7",
"@types/node": "^13.7.0",
"babel-jest": "^25.1.0",
"jest": "^25.1.0",
"jest-extended": "^0.11.2",
"lerna": "^3.15.0",
"npm-run-all": "^4.0.0",
"prettier": "^1.18.2",
"shx": "^0.3.0",
"typescript": "^3.5.2"
},
"scripts": {
"all": "npm-run-all -s clean build pretty",
"build": "lerna run build",
"clean": "lerna run clean --parallel",
"test": "jest",
"pretty": "prettier --write \"./**/*.ts\""
},
"engines": {
"node": ">=10"
}
}