-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.47 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.47 KB
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
{
"name": "@supercharge/env",
"description": "The Supercharge environment package",
"version": "4.0.0-alpha.2",
"author": "Marcus Pöhls <marcus@superchargejs.com>",
"bugs": {
"url": "https://github.com/supercharge/framework/issues"
},
"files": [
"dist"
],
"type": "module",
"main": "dist/index.js",
"types": "dist",
"exports": {
".": "./dist/index.js"
},
"dependencies": {
"@supercharge/contracts": "^4.0.0-alpha.2",
"@supercharge/fs": "~3.4.0",
"@supercharge/strings": "~2.0.0"
},
"devDependencies": {
"@types/lodash": "~4.14.202",
"c8": "~9.1.0",
"expect": "~29.7.0",
"typescript": "~5.4.5",
"uvu": "~0.5.6"
},
"engines": {
"node": ">=16"
},
"homepage": "https://superchargejs.com",
"keywords": [
"env",
"environment",
"supercharge",
"superchargejs",
"nodejs"
],
"license": "MIT",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"directory": "packages/env",
"url": "git+https://github.com/supercharge/framework.git"
},
"scripts": {
"build": "tsc --build tsconfig.json --force",
"dev": "npm run build -- --watch",
"watch": "npm run dev",
"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": "NODE_ENV=testing c8 --include=dist uvu --ignore helpers --ignore fixtures",
"posttest": "c8 report --reporter=html"
}
}