-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.24 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
{
"name": "@supercharge/map",
"description": "An extended Map class and the one JavaScript should have shipped",
"version": "1.5.0",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"bugs": {
"url": "https://github.com/supercharge/map/issues"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~2.0.0",
"@supercharge/tsconfig": "~3.1.0",
"c8": "~7.11.3",
"eslint": "~8.15.0",
"expect": "~28.1.0",
"sinon": "~14.0.0",
"typescript": "~4.6.4",
"uvu": "~0.5.3"
},
"files": [
"dist"
],
"main": "dist",
"types": "dist",
"homepage": "https://github.com/supercharge/map",
"keywords": [
"supercharge",
"superchargejs",
"map",
"nodejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/map.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run test:coverage",
"test:run": "uvu",
"test:coverage": "c8 --include=dist npm run test:run && npm run test:report",
"test:report": "c8 report --reporter=html"
}
}