-
Notifications
You must be signed in to change notification settings - Fork 303
/
package.json
54 lines (54 loc) · 1.5 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
{
"name": "oimo",
"version": "1.0.9",
"description": "JavaScript 3D physics engine.",
"main": "build/oimo.min.js",
"repository": "lo-th/oimo",
"jsnext:main": "build/oimo.module.js",
"module": "build/oimo.module.js",
"files": [
"package.json",
"LICENSE",
"README.md",
"build/oimo.js",
"build/oimo.min.js",
"build/oimo.module.js",
"src",
"examples/js"
],
"directories": {
"doc": "docs",
"example": "examples",
"test": "test"
},
"eslintConfig": {
"extends": "mdcs"
},
"scripts": {
"build": "rollup -c",
"build-uglify": "rollup -c && terser build/oimo.js -c -m -b beautify=false,preamble=\"'// lo-th.github.io/Oimo.js/license'\" > build/oimo.min.js",
"build-closure": "rollup -c && java -jar utils/build/compiler/closure-compiler-v20160713.jar --warning_level=VERBOSE --jscomp_off=globalThis --jscomp_off=checkTypes --externs utils/build/externs.js --language_in=ECMASCRIPT5_STRICT --js build/oimo.js --js_output_file build/oimo.min.js",
"dev": "rollup -c -w",
"lint": "eslint src",
"test": "echo \"Error: No test specified!\" && exit 1"
},
"keywords": [
"oimo",
"oimo.js",
"physics",
"3d"
],
"author": "lo-th",
"license": "MIT",
"homepage": "http://lo-th.github.io/Oimo.js/",
"bugs": {
"url": "https://github.com/lo-th/Oimo.js/issues"
},
"devDependencies": {
"eslint": "latest",
"eslint-config-mdcs": "latest",
"rollup": "latest",
"rollup-watch": "latest",
"terser": "latest"
}
}