-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.1 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
{
"name": "@decoy9697/vector",
"version": "1.0.2",
"description": "A 2d vector library",
"repository": "https://github.com/craigdallimore/vector",
"bugs": {
"url": "https://github.com/craigdallimore/issues",
"email": "[email protected]"
},
"keywords": [
"vector",
"math",
"2d"
],
"files": [
"dist"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"license": "MIT",
"scripts": {
"format": "xo --fix",
"prepublishOnly": "yarn test && tsc",
"test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov jest src",
"test": "yarn run format && jest && yarn run test-coverage"
},
"xo": {
"prettier": true,
"rules": {
"import/extensions": "off",
"unicorn/prefer-module": "off"
}
},
"prettier": {
"tabWidth": 2,
"useTabs": false
},
"devDependencies": {
"@types/jest": "^27.4.1",
"c8": "^7.11.0",
"fast-check": "^2.24.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.4",
"typescript": "^4.6.3",
"xo": "^0.48.0"
},
"dependencies": {}
}