-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.01 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
{
"name": "@muxed/dni-utils",
"version": "2.0.2",
"description": "Utilities for Spanish DNI",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/juananmuxed/dni-utils.git"
},
"homepage": "https://github.com/juananmuxed/dni-utils#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": "Juanan Mux <[email protected]> (https://github.com/juananmuxed)",
"funding": {
"type": "ko-fi",
"url": "https://ko-fi.com/muxed"
},
"bugs": {
"url": "https://github.com/juananmuxed/dni-utils/issues"
},
"keywords": [
"spain",
"nie",
"nif",
"dni"
],
"scripts": {
"start": "tsc -w",
"build": "tsc",
"test:watch": "vitest",
"test": "vitest run",
"coverage": "vitest run --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm test",
"preversion": "npm run test"
},
"devDependencies": {
"c8": "^7.11.3",
"ts-loader": "^9.3.0",
"typescript": "^4.7.4",
"vitest": "^0.15.2"
}
}