-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.18 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
{
"name": "@dev-build-deploy/dep5-it",
"version": "0.0.0",
"description": "Debian Copyright (dep5) management library",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"prepublishOnly": "tsc --project tsconfig.publish.json",
"test": "jest --coverage",
"lint": "eslint --ext .ts test/*.ts src/*.ts",
"format": "prettier --write src/*.ts test/*.ts && prettier --write test/*.ts src/*.ts"
},
"author": "Kevin de Jong",
"license": "MIT",
"keywords": [
"Copyright",
"Debian",
"dep5"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dev-build-deploy/dep5-it.git"
},
"bugs": {
"url": "https://github.com/dev-build-deploy/dep5-it/issues"
},
"homepage": "https://github.com/dev-build-deploy/dep5-it#readme",
"devDependencies": {
"@types/jest": "^29",
"@typescript-eslint/eslint-plugin": "^7",
"@typescript-eslint/parser": "^7",
"eslint": "^8",
"eslint-import-resolver-typescript": "^3",
"eslint-plugin-import": "^2",
"eslint-plugin-jest": "^28",
"jest": "^29",
"prettier": "^3",
"ts-jest": "^29",
"typescript": "^5"
},
"files": [
"lib/*"
]
}