-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
64 lines (64 loc) · 1.53 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
54
55
56
57
58
59
60
61
62
63
64
{
"name": "nova",
"version": "0.88.0",
"description": "JavaScript 3D library",
"main": "build/nova.js",
"repository": "mrdoob/nova.js",
"jsnext:main": "build/nova.module.js",
"module": "build/nova.module.js",
"files": [
"package.json",
"bower.json",
"LICENSE",
"README.md",
"build/nova.js",
"build/nova.min.js",
"build/nova.module.js",
"src",
"examples/js",
"examples/fonts"
],
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"eslintConfig": {
"extends": "google"
},
"scripts": {
"build": "rollup -c",
"build-uglify": "rollup -c && uglifyjs build/nova.js -cm --preamble \"// threejs.org/license\" > build/nova.min.js",
"dev": "concurrently --names \"ROLLUP,HTTP\" -c \"bgBlue.bold,bgGreen.bold\" \"rollup -c -w -m inline\" \"serve --port 8080\"",
"start": "npm run dev",
"lint": "eslint src"
},
"keywords": [
"three",
"three.js",
"3d",
"webgl"
],
"author": "HypnosNova",
"license": "MIT",
"devDependencies": {
"@types/hammerjs": "^2.0.35",
"concurrently": "^3.5.0",
"electron": "1.7.11",
"eslint": "^4.14.0",
"eslint-config-google": "^0.9.1",
"eslint-config-mdcs": "^4.2.2",
"google-closure-compiler": "^20170521.0.0",
"hammer": "^0.0.5",
"hammerjs": "^2.0.8",
"lodash": "^4.17.4",
"qunitjs": "^2.4.0",
"rollup": "^0.51.0",
"rollup-watch": "^4.0.0",
"serve": "^6.3.1",
"uglify-js": "^3.0.23"
},
"dependencies": {
"hammerjs": "^2.0.8"
}
}