-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.26 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
{
"name": "@supercharge/doubly-linked-list",
"description": "A Doubly Linked List implementation for JavaScript",
"version": "1.0.0",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"bugs": {
"url": "https://github.com/supercharge/doubly-linked-list/issues"
},
"devDependencies": {
"@supercharge/tsconfig": "~3.1.0",
"@supercharge/eslint-config-typescript": "~1.0.1",
"c8": "~7.11.0",
"eslint": "~7.32.0",
"expect": "~27.5.1",
"typescript": "~4.4.4",
"uvu": "~0.5.3"
},
"main": "dist",
"types": "dist",
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/doubly-linked-list",
"keywords": [
"supercharge",
"superchargejs",
"linked-list",
"linked list",
"doubly-linked-list",
"double-linked-list",
"nodejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/doubly-linked-list.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run test:run",
"test:run": "c8 --include=dist uvu",
"posttest": "c8 report --reporter=html"
}
}