-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.02 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
{
"name": "aionsat",
"version": "1.1.1",
"description": "An implementation of the separating axis theorem. This package is a learning project inspired by sat.js.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist/**/*"
],
"author": "aion",
"license": "MIT",
"scripts": {
"format": "prettier --write \"**/*.{ts,js}\"",
"build": "tsc -p tsconfig.json",
"watch": "tsc --w",
"dev": "parcel serve ./sandbox/perf.html --no-cache",
"test": "env TS_NODE_COMPILER_OPTIONS='{\"module\": \"commonjs\" }' mocha -r ts-node/register 'tests/**/*.ts'",
"prepare": "yarn build && yarn format && yarn test"
},
"repository": {
"type": "git",
"url": "https://github.com/Dmoulart/sat.git"
},
"devDependencies": {
"@parcel/transformer-typescript-types": "^2.3.2",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"chai": "^4.3.6",
"mocha": "^9.2.1",
"parcel": "^2.3.2",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
}
}