-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.62 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": "collision-detect",
"version": "2.0.2",
"description": "Simple 2D JavaScript collision detection library",
"main": "./src/index.js",
"scripts": {
"fix": "npm run format:fix && npm run lint:fix",
"format": "prettier --check '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"format:fix": "prettier --write '**/*.{js,jsx,ts,tsx,json,css,scss,md}'",
"lint": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{js,jsx,ts,tsx}' --fix",
"prepublishOnly": "npm run format && npm run lint && npm run test",
"test": "node --experimental-vm-modules ./node_modules/.bin/jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch"
},
"author": "Jesse Palmer",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.22.11",
"@babel/preset-env": "^7.22.10",
"babel-jest": "^29.6.4",
"eslint": "^8.48.0",
"eslint-config-google": "^0.14.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "^5.0.0",
"jest": "^29.6.4",
"prettier": "^3.0.2"
},
"engines": {
"node": ">16.0.0"
},
"bugs": {
"url": "https://github.com/jesselpalmer/collision-detect/issues"
},
"type": "module",
"repository": {
"type": "git",
"url": "git://github.com/jesselpalmer/collision-detect.git"
},
"keywords": [
"2d-collision",
"2d-collision library",
"collision",
"collision detection",
"collisions",
"detection",
"game library",
"graphics library",
"rectangle collisions",
"square collisions"
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/jesselpalmer"
}
}