forked from ecsyjs/ecsy-three
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.6 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
{
"name": "ecsy-three",
"version": "0.0.1",
"description": "ECSY three.js bindings",
"main": "build/ecsy-three.js",
"jsnext:main": "build/ecsy-three.module.js",
"module": "build/ecsy-three.module.js",
"scripts": {
"build": "rollup -c",
"dev": "concurrently --names 'ROLLUP,DOCS,HTTP' -c 'bgBlue.bold,bgYellow.bold,bgGreen.bold' 'rollup -c -w -m inline' 'npm run dev:server'",
"dev:server": "http-server -c-1 -p 8080 --cors",
"start": "npm run dev",
"lint": "eslint src",
"deploy": "gh-pages -d dist"
},
"devDependencies": {
"@babel/core": "^7.6.4",
"babel-eslint": "^10.0.3",
"babel-preset-es2015": "^6.24.1",
"babelify": "^10.0.0",
"browserify": "^16.5.0",
"concurrently": "^5.0.0",
"eslint": "^6.7.1",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.1",
"gh-pages": "^2.1.1",
"html-webpack-plugin": "^3.2.0",
"prettier": "^1.19.1",
"rollup-plugin-auto-external": "^2.0.0",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-terser": "^5.1.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.9.0"
},
"dependencies": {
"ecsy": "^0.1.4",
"rollup-plugin-node-resolve": "^5.2.0",
"three": "^0.111.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mozillareality/ecsy-three.git"
},
"author": "Fernando Serrano <[email protected]> (http://fernandojsg.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mozillareality/ecsy-three/issues"
},
"homepage": "https://github.com/mozillareality/ecsy-three#readme"
}