-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 1.8 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
72
73
74
{
"name": "ldap-vc-status",
"version": "5.0.0",
"description": "JavaScript implementation of ",
"homepage": "",
"keywords": [
"ldap",
"DIDComm",
"DIDCommV2"
],
"author": "Valentyn Krykun <[email protected]",
"contributors": [],
"license": "Apache-2.0",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Spherity/vc-status-2021-ldap.git"
},
"engines": {
"node": ">=12"
},
"scripts": {
"test": "jest",
"test:cov": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc -p tsconfig.build.json",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint --cache",
"prepublishOnly": "npm run lint && npm run build",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push --follow-tags"
},
"main": "lib/index.js",
"files": [
"lib/**/*"
],
"dependencies": {
"ldap-escape": "^2.0.4",
"ldapts": "^2.11.0"
},
"devDependencies": {
"@types/node": "^14.14.22",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-tsdoc": "^0.2.11",
"husky": "^4.3.8",
"jest": "^26.6.3",
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
"semantic-release": "^17.3.7",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.ts": "eslint --cache --fix",
"*.{ts}": "prettier --write"
}
}