-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.17 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
{
"name": "building-editor",
"version": "0.1.2",
"description": "Open Source 3D Building Model Editor",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baues/building-editor.git"
},
"keywords": [
"building-editor",
"building",
"architecture",
"three.js",
"webgl"
],
"author": "BAUES <[email protected]> (https://github.com/baues)",
"license": "MIT",
"files": [
"dist"
],
"bugs": {
"url": "https://github.com/baues/building-editor/issues"
},
"homepage": "https://github.com/baues/building-editor#readme",
"peerDependencies": {
"three": "^0.127.0"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@types/node": "^14.14.41",
"@types/three": "^0.127.1",
"babel-loader": "^8.1.0",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"three": "^0.127.0"
}
}