-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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": "coma-physics",
"description": "JS physics engine for the DOM",
"version": "1.0.3",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/shiplet/coma-physics.git"
},
"author": {
"name": "Shiplet",
"email": "[email protected]",
"url": "https://michaelshiplet.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/shiplet/coma-physics/issues"
},
"files": [
"build"
],
"engines": {
"node": ">=10 <13"
},
"engineStrict": true,
"config": {
"engine-strict": true
},
"scripts": {
"build": "tsc --build tsconfig.build.json",
"build:watch": "yarn build --watch",
"build:typedoc": "typedoc --mode modules --tsconfig tsconfig.build.json --out ./typedoc/",
"format": "tslint -p tsconfig.base.json --fix --exclude \"node_modules/**\" \"**/*.ts\" && cross-env NODE_OPTIONS=\"--max_old_space_size=4096\" prettier --write \"**/*.{ts,js,json,yml,yaml}\"",
"lint": "tslint -p tsconfig.base.json -c tslint.json --exclude \"node_modules/**\" \"**/*.ts\"",
"clean": "rimraf build coverage typedoc",
"test": "jest",
"test:watch": "yarn test --watch",
"test:cov": "yarn test --coverage",
"test:debug": "node --inspect node_modules/jest/bin/jest.js --watch --runInBand",
"prepublish": "yarn clean && yarn build"
},
"devDependencies": {
"@types/dotenv": "^8.2.0",
"@types/jest": "^25.2.1",
"@types/node": "^13.11.1",
"cross-env": "^7.0.2",
"dotenv": "^8.2.0",
"husky": "^4.2.5",
"jest": "^25.3.0",
"lint-staged": "^10.1.3",
"prettier": "^2.0.4",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.1",
"ts-loader": "^7.0.0",
"ts-node": "^8.8.2",
"tslint": "^6.1.1",
"tslint-config-prettier": "^1.18.0",
"typedoc": "^0.17.4",
"typescript": "^3.8.3"
}
}