-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
53 lines (53 loc) · 1.58 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
49
50
51
52
53
{
"name": "three-dat.gui",
"version": "2.0.7",
"description": "A package which create THREE.js controls on Dat.GUI",
"main": "dist/index.js",
"browser": "dist/browser.js",
"module": "dist/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "npm run docs && rollup -c",
"dev": "run-p dev:**",
"dev:compile": "rollup -cw",
"dev:serve": "parcel dev/index.html -d .parcel",
"test": "echo \"Error: no test specified\" && exit 1",
"docs": "parcel build dev/index.html -d ./docs --public-url https://solaldr.github.io/three-dat.gui/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SolalDR/three-dat.gui.git"
},
"keywords": [
"three",
"dat.gui"
],
"contributors": [
"Solal Dussout-Revel <bastienrobert@outlook.com> (https://bastienrobert.fr)",
"Bastien Robert <solal.dussout-revel@hotmail.fr> (https://solaldussout-revel.com/)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/SolalDR/three-dat.gui/issues"
},
"homepage": "https://github.com/SolalDR/three-dat.gui#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.7.0",
"@babel/preset-env": "^7.7.1",
"babelify": "^8.0.0",
"browserify": "^16.1.0",
"dat.gui": "^0.7.3",
"glslify": "^6.1.0",
"npm-run-all": "^4.1.5",
"parcel": "^1.12.4",
"rollup": "^1.27.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-filesize": "^6.2.1",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^5.2.0",
"three": "^0.137.0"
}
}