-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "@supercharge/set",
"description": "An Array-aligned Set class and the one JavaScript should have shipped",
"version": "2.2.1",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/set/issues"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~2.3.4",
"@supercharge/tsconfig": "~4.0.0",
"c8": "~7.13.0",
"eslint": "~8.40.0",
"expect": "~29.5.0",
"typescript": "~5.0.4",
"uvu": "~0.5.6"
},
"main": "dist",
"types": "dist",
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/set",
"keywords": [
"supercharge",
"superchargejs",
"set",
"nodejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/set.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"
}
}