forked from brotherlu/Herosaver
-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
37 lines (37 loc) · 991 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
{
"name": "herosaver",
"private": true,
"version": "0.0.0",
"description": "Save Configuration and STLs from websites using the THREE.JS framework for academic and educational purposes.",
"scripts": {
"start": "parcel src/herosaver.js",
"build": "parcel build src/herosaver.js",
"lint": "standard --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/notnullgames/Herosaver.git"
},
"keywords": [],
"author": "David Konsumer <[email protected]> (http://konsumer.js.org)",
"license": "MIT",
"bugs": {
"url": "https://github.com/notnullgames/Herosaver/issues"
},
"homepage": "https://github.com/notnullgames/Herosaver#readme",
"dependencies": {
"file-saver": "^2.0.2",
"three": "^0.116.1"
},
"devDependencies": {
"parcel-bundler": "^1.12.4",
"pre-commit": "^1.2.2",
"standard": "^14.3.4"
},
"pre-commit": ["lint", "build"],
"standard": {
"ignore": [
"/dist/**/*.js"
]
}
}