-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·47 lines (47 loc) · 1.47 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
{
"name": "lucid",
"version": "0.1.0",
"description": "3D physics engine in Javascript for learning Purposes",
"main": "build/lucid.min.js",
"repository": "https://github.com/deep110/lucid-engine",
"jsnext:main": "build/lucid.module.js",
"module": "build/lucid.module.js",
"files": [
"package.json",
"LICENSE",
"README.md",
"build/lucid.js",
"build/lucid.min.js",
"build/lucid.module.js",
"src",
"examples/js"
],
"scripts": {
"build": "rm -rf build/ && rollup -c --bundleConfigAsCjs",
"build-uglify": "rollup -c --bundleConfigAsCjs && terser build/lucid.js -c -m -b beautify=false,preamble=\"'// @author Deepankar Agrawal'\" > build/lucid.min.js",
"dev": "rollup -c -w --bundleConfigAsCjs",
"lint": "eslint src --ext .ts",
"test": "echo \"Error: No test specified!\" && exit 1"
},
"keywords": [
"lucid",
"physics",
"3d"
],
"author": "deep110",
"license": "MIT",
"homepage": "https://github.com/lucid-engine/",
"bugs": {
"url": "https://github.com/lucid-engine/issues/"
},
"devDependencies": {
"@rollup/plugin-typescript": "^10.0.1",
"@typescript-eslint/eslint-plugin": "^5.48.0",
"@typescript-eslint/parser": "^5.48.0",
"eslint": "latest",
"rollup": "latest",
"terser": "latest",
"tslib": "^2.4.1",
"typescript": "latest"
}
}