forked from pmndrs/cannon-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.74 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
{
"name": "cannon-es",
"version": "0.16.0",
"license": "MIT",
"description": "A lightweight 3D physics engine written in JavaScript.",
"homepage": "https://github.com/schteppe/cannon.js",
"author": "Stefan Hedman <[email protected]> (http://steffe.se)",
"contributors": [
"Cody Persinger <[email protected]> (https://github.com/codynova)",
"Marco Fugaro <[email protected]> (https://github.com/marcofugaro)"
],
"keywords": [
"cannon.js",
"cannon",
"physics",
"engine",
"3d"
],
"main": "./dist/cannon-es.cjs.js",
"module": "./dist/cannon-es.js",
"types": "./dist/cannon-es.d.ts",
"sideEffects": false,
"scripts": {
"prebuild": "rimraf dist",
"build": "npm run typegen && rollup -c",
"prepare": "npm run build && npm run test",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict",
"typegen": "tsc --outFile dist/cannon-es.d.ts",
"test": "jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick"
}
},
"repository": {
"type": "git",
"url": "https://github.com/pmndrs/cannon-es.git"
},
"bugs": {
"url": "https://github.com/schteppe/cannon.js/issues"
},
"devDependencies": {
"@babel/core": "^7.10.3",
"@babel/preset-env": "^7.10.3",
"@babel/preset-typescript": "^7.10.1",
"@rollup/plugin-babel": "^5.0.4",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.3",
"@types/jest": "^26.0.14",
"husky": "^4.2.5",
"jest": "^26.6.0",
"prettier": "^2.0.5",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.2",
"rollup": "^2.18.0",
"rollup-plugin-size-snapshot": "^0.12.0",
"ts-jest": "^26.4.4",
"typescript": "^4.0.5"
}
}