-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 897 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
{
"name": "id-verify-client",
"version": "1.1.0",
"description": "ID Verify Client library",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"rimraf": "./node_modules/rimraf/bin.js",
"clean": "rimraf dist/",
"build": "npm run clean && tsc",
"lint": "eslint \"{src,test}/**/*.{js,ts}\"",
"lint:fix": "npm run lint -- --fix",
"check-dist": "git status | grep 'nothing to commit'"
},
"repository": {
"type": "git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.0.3",
"@types/verror": "^1.10.4",
"eslint": "^6.8.0",
"eslint-plugin-jest-formatting": "^1.2.0",
"eslint-plugin-mocha-cleanup": "^1.8.0",
"eslint-plugin-mocha-no-only": "^1.1.0",
"nyc": "^15.0.0",
"rimraf": "^3.0.2",
"ts-node": "^8.6.2"
},
"dependencies": {
"idanalyzer": "^1.2.7",
"verror": "^1.10.0"
}
}