-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
39 lines (39 loc) · 853 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
38
39
{
"name": "threejs-cloth-ES2015",
"version": "1.0.0",
"description": "Three.js cloth example rewritten in ES2015",
"main": "app.js",
"directories": {
"test": "test"
},
"scripts": {
"build": "webpack -p",
"build:dev": "webpack",
"build:watch": "npm run build:dev -- --watch",
"start": "http-server"
},
"keywords": [
"cloth",
"3d",
"three.js",
"three",
"webgl"
],
"author": "nikpundik",
"license": "ISC",
"dependencies": {
"chai": "^3.5.0",
"http-server": "^0.12.3",
"three": "^0.116.1"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.10.4",
"babel-loader": "^6.2.4",
"babel-preset-es2015": "^6.9.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^4.0.0",
"eslint-plugin-import": "^1.10.2",
"webpack": "^1.13.1"
}
}