-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.4 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
55
56
57
58
59
{
"name": "@supercharge/macroable",
"description": "An elegant way to extend the prototype of ES6 classes",
"version": "2.0.1",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/macroable/issues"
},
"dependencies": {},
"devDependencies": {
"@japa/run-failed-tests": "~1.0.7",
"@japa/runner": "~2.0.9",
"@japa/spec-reporter": "~1.1.12",
"@supercharge/eslint-config-typescript": "~2.3.0",
"@supercharge/tsconfig": "~3.1.0",
"c8": "~7.11.3",
"eslint": "~8.20.0",
"expect": "~28.1.3",
"typescript": "~4.7.4"
},
"engines": {
"node": ">=14"
},
"files": [
"dist/index.js"
],
"homepage": "https://github.com/supercharge/macroable",
"keywords": [
"javascript",
"typescript",
"es6",
"classes",
"prototype",
"extend",
"extend-prototype",
"nodejs",
"supercharge",
"superchargejs"
],
"license": "MIT",
"main": "dist",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/macroable.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src",
"lint:fix": "npm run lint -- --fix",
"posttest": "c8 report --reporter=html",
"test": "npm run build && npm run lint && npm run test:run",
"test:run": "c8 node bin/test.js"
},
"types": "dist"
}