-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
71 lines (71 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "node-nist",
"version": "0.10.0",
"description": "Simple ANSI/NIST-ITL 1-2011 (update 2015) encoder and decoder for Node.",
"author": "Ivo Raisr",
"license": "MIT",
"keywords": [
"NIST",
"ANSI",
"Fingerprints",
"Faces",
"Biometric",
"Information"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ivosh/node-nist.git"
},
"bugs": {
"url": "https://github.com/ivosh/node-nist/issues"
},
"homepage": "https://github.com/ivosh/node-nist#readme",
"files": [
"lib/**/*"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": "18 || 20 || 22"
},
"scripts": {
"build": "tsc",
"clean": "rimraf coverage lib",
"coverage": "cross-env NODE_ENV=test jest --env=node --colors --coverage",
"clobber": "npm run clean && rimraf node_modules",
"lint": "eslint",
"postversion": "git push && git push --tags",
"prepublishOnly": "npm run lint && npm run test",
"prepare": "npm run clean && npm run build",
"prettier": "prettier \"src/**/*.{ts,json}\" --write",
"test": "cross-env NODE_ENV=test jest --env=node --colors",
"test:watch": "cross-env NODE_ENV=test jest --env=node --colors --watch"
},
"dependencies": {
"ramda": "^0.30.1"
},
"devDependencies": {
"@eslint/js": "^9.10.0",
"@types/jest": "^29.5.12",
"@types/node": "^22.5.4",
"@types/ramda": "^0.30.2",
"cross-env": "^7.0.3",
"eslint": "^9.10.0",
"jest": "^29.7.0",
"prettier": "^3.2.5",
"rimraf": "^6.0.1",
"ts-jest": "^29.1.2",
"typescript": "^5.4.4",
"typescript-eslint": "^8.5.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"preset": "ts-jest",
"roots": [
"src"
],
"testPathIgnorePatterns": [
"node_modules/"
]
}
}