-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.08 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
{
"name": "@thorium-sim/rapier-node",
"version": "0.13.1",
"main": "index.js",
"repository": "[email protected]:SupremeTechnopriest/rapier-node.git",
"author": "Randy Lebeau <[email protected]>",
"license": "Apache 2.0",
"type": "module",
"private": true,
"scripts": {
"build": "node ./scripts/build.js",
"install:2d": "cd ./rapier2d-node && npm install",
"install:3d": "cd ./rapier3d-node && npm install",
"prebuild": "npm run install:2d && npm run install:3d",
"test": "node test/test.js",
"release:2d": "cd ./rapier2d-node && npm publish --access public",
"release:3d": "cd ./rapier3d-node && npm publish --access public",
"release": "npm run release:2d && npm run release:3d",
"dryrun:2d": "cd ./rapier2d-node && npm publish --access public --dry-run",
"dryrun:3d": "cd ./rapier3d-node && npm publish --access public --dry-run",
"dryrun": "npm run dryrun:2d && npm run dryrun:3d"
},
"devDependencies": {
"cpy": "^8.1.2",
"fs-extra": "^10.0.0",
"globby": "^9.2.0",
"ora": "^6.0.1",
"typescript": "^4.3.2"
}
}