forked from pmndrs/cannon-es
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
69 lines (69 loc) · 2.01 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
65
66
67
68
69
{
"name": "cannon-es",
"version": "0.18.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",
"react-native": "./dist/cannon-es.js",
"types": "./dist/cannon-es.d.ts",
"sideEffects": false,
"scripts": {
"start": "npx serve",
"prebuild": "rimraf dist",
"build": "npm run typegen && rollup -c",
"prepublishOnly": "npm run build && npm run test",
"typecheck": "tsc --noEmit --emitDeclarationOnly false --strict",
"typegen": "tsc --outFile dist/cannon-es.d.ts",
"generate-docs": "typedoc && node ./scripts/inject-css-in-docs.mjs",
"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.13.15",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.15",
"@babel/preset-typescript": "^7.13.0",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"@rollup/plugin-replace": "^2.4.2",
"@types/jest": "^26.0.22",
"fs-extra": "^9.1.0",
"husky": "4.3.8",
"jest": "^26.6.0",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"readdirp": "^3.6.0",
"rimraf": "^3.0.2",
"rollup": "^2.44.0",
"rollup-plugin-filesize": "^9.1.1",
"ts-jest": "^26.5.4",
"typedoc": "0.20.30",
"typescript": "^4.2.4"
}
}