-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 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
{
"name": "@markusberg/key-value-parser",
"version": "0.3.0",
"description": "Simple key-value parser",
"exports": {
".": "./dist/index.js"
},
"type": "module",
"scripts": {
"build": "npm run clean && npm run build:prep && npm run build:tsc",
"build:prep": "mkdir -p dist",
"build:tsc": "tsc -p ./tsconfig.prod.json",
"clean": "rm -fr dist",
"prep": "npm install && husky install && chmod ug+x .husky/*",
"prepublishOnly": "npm run build",
"test": "vitest run --coverage",
"test:watch": "vitest watch",
"test:watch:coverage": "vitest watch --coverage"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markusberg/key-value-parser.git"
},
"keywords": [
"key",
"value",
"env",
"file",
"parser"
],
"author": "Markus Berg <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/markusberg/key-value-parser/issues"
},
"homepage": "https://github.com/markusberg/key-value-parser#readme",
"devDependencies": {
"@vitest/coverage-v8": "^0.34.6",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "^3.1.0",
"typescript": "^5.3.3",
"vitest": "^0.34.6"
}
}