-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.39 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
{
"version": "1.0.2",
"scripts": {
"bench": "ts-node -O '{\"module\":\"commonjs\"}' benchmark",
"format": "xo --fix",
"test": "jest src && yarn format && yarn run test-coverage",
"test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov jest src",
"prepublishOnly": "yarn test && tsc",
"build": "tsc"
},
"license": "MIT",
"description": "A simple priority queue",
"repository": "https://github.com/craigdallimore/priority-queue#readme",
"bugs": {
"url": "https://github.com/craigdallimore/priority-queue/issues",
"email": "decoy9697@gmail.com"
},
"keywords": [
"priority-queue"
],
"files": [
"dist"
],
"name": "@decoy9697/priority-queue",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"xo": {
"prettier": true,
"rules": {
"@typescript-eslint/naming-convention": "off",
"unicorn/prefer-module": "off",
"import/extensions": "off"
}
},
"prettier": {
"tabWidth": 2,
"useTabs": false
},
"dependencies": {},
"devDependencies": {
"@types/benchmark": "^2.1.1",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.10",
"benchmark": "^2.1.4",
"c8": "^7.11.0",
"jest": "^27.5.1",
"prettier": "^2.6.1",
"ts-jest": "^27.1.4",
"ts-node": "^10.7.0",
"tslib": "^2.3.1",
"typescript": "^4.5.4",
"xo": "^0.48.0"
}
}