-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 900 Bytes
/
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
{
"name": "dni-js",
"version": "0.2.1",
"description": "Compute and validate a Spanish DNI/NIE number",
"main": "src/index.js",
"scripts": {
"format:check": "prettier --check './**/*.js'",
"format": "prettier --write './**/*.js'",
"lint": "npm run format:check && eslint .",
"test:watch": "jest --watch",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/albertfdp/dni-js.git"
},
"keywords": [
"dni",
"nie",
"spain",
"spanish"
],
"author": "Albert Fernández <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/albertfdp/dni-js/issues"
},
"homepage": "https://github.com/albertfdp/dni-js#readme",
"devDependencies": {
"eslint": "^7.32.0",
"eslint-plugin-jest": "^24.4.0",
"jest": "^27.1.0",
"prettier": "^2.3.2",
"unexpected": "^12.0.3"
}
}