-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.89 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
{
"name": "ballphysics",
"version": "1.7.0",
"description": "2D physics engine🏀",
"main": "./src/physics.js",
"type": "module",
"scripts": {
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"lint": "eslint . --ext .ts,.js,.tsx,.jsx",
"docs": "./node_modules/.bin/jsdoc -c conf.json",
"watch": "npx nodemon --ignore \"dest/*.*\" -e js,ts,css,html,tsx,jsx --exec npm run dev",
"dev": "npx esbuild editor/src/index.ts editor/src/serviceworker.ts --bundle --sourcemap=inline --jsx-factory=elementCreator --platform=browser --target=es2020 --outdir=dest/ && cp -a editor/static/. dest/",
"build": "npx esbuild editor/src/index.ts editor/src/serviceworker.ts --bundle --minify --jsx-factory=elementCreator --platform=browser --target=chrome58,firefox57,safari11,edge16 --outdir=dest/ && cp -a editor/static/. dest/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/AkosSeres/BallPhysics.git"
},
"keywords": [
"physics",
"2d",
"rigid",
"balls"
],
"author": "Akos Seres",
"license": "MIT",
"bugs": {
"url": "https://github.com/AkosSeres/BallPhysics/issues"
},
"homepage": "https://github.com/AkosSeres/BallPhysics#readme",
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.11.0",
"@typescript-eslint/parser": "^4.11.0",
"esbuild": "^0.8.26",
"eslint": "^7.2.0",
"eslint-config-airbnb": "^18.2.1",
"eslint-config-airbnb-typescript": "^12.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jsdoc": "^30.7.9",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.0.0",
"jest": "^26.6.3",
"jsdoc-import-support": "^3.6.4",
"minami": "^1.2.3",
"nodemon": "^2.0.6",
"typescript": "^4.1.3"
},
"jest": {
"transform": {},
"verbose": true,
"roots": [
"tests"
]
},
"dependencies": {}
}