-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.7 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
60
61
62
63
64
65
66
67
68
69
70
{
"name": "@supercharge/create-app",
"description": "Scaffold a new Supercharge application with one command",
"version": "1.1.0",
"author": "Marcus Pöhls <[email protected]>",
"bugs": {
"url": "https://github.com/supercharge/create-app/issues"
},
"bin": {
"create-supercharge-app": "dist/bin/run.js"
},
"main": "dist/src",
"types": "dist",
"files": [
"dist/bin",
"dist/src"
],
"dependencies": {
"@supercharge/cedar": "~1.3.0",
"@supercharge/fs": "~3.4.0",
"@supercharge/strings": "~1.29.0",
"tar": "~6.1.11"
},
"devDependencies": {
"@supercharge/eslint-config-typescript": "~1.0.1",
"@supercharge/tsconfig": "~2.0.0",
"@types/node": "~18.11.9",
"@types/tar": "~6.1.3",
"c8": "~7.12.0",
"eslint": "~7.32.0",
"expect": "~29.3.0",
"ms": "~2.1.3",
"sinon": "~12.0.1",
"typescript": "~4.4.4",
"uvu": "~0.5.6"
},
"engines": {
"node": ">= 12"
},
"homepage": "https://superchargejs.com",
"keywords": [
"supercharge",
"superchargejs",
"app",
"boilerplate",
"node",
"node.js",
"framework",
"javascript",
"typescript"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/supercharge/create-app.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "npm run lint -- --fix",
"test": "npm run build && npm run lint && npm run test:coverage",
"test:run": "uvu --ignore helpers",
"test:coverage": "c8 --include=dist npm run test:run && npm run test:report",
"test:report": "c8 report --reporter=html"
}
}