-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.2 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
{
"name": "@supercharge/classes",
"description": "Class utilities for Node.js and JavaScript",
"version": "2.0.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/classes/issues"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~2.3.1",
"c8": "~7.12.0",
"eslint": "~8.25.0",
"expect": "~29.1.2",
"typescript": "~4.8.4",
"uvu": "~0.5.6"
},
"engines": {
"node": ">=14"
},
"files": [
"dist"
],
"homepage": "https://github.com/supercharge/classes",
"keywords": [
"nodejs",
"class",
"utilities",
"functions",
"utilities",
"class-utilities",
"supercharge",
"superchargejs"
],
"license": "MIT",
"main": "dist/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/classes.git"
},
"scripts": {
"build": "tsc",
"lint": "eslint src --ext .js,.ts",
"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"
},
"types": "dist"
}