-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.51 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
{
"name": "can-pass-verify",
"version": "1.7.2",
"author": {
"name": "can-group",
"email": "[email protected]",
"url": "https://canfoundation.io"
},
"repository": {
"type": "git",
"url": "https://github.com/canfoundation/can-pass-verify.git"
},
"homepage": "https://github.com/canfoundation/can-pass-verify",
"bugs": {
"url": "https://github.com/canfoundation/can-pass-verify/issues"
},
"license": "MIT",
"keywords": [
"can-pass"
],
"files": [
"lib"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"clean": "rimraf lib",
"prebuild": "yarn clean",
"build": "tsc -p .",
"prepublish": "yarn build",
"release": "standard-version",
"test": "jest"
},
"dependencies": {
"cognito-express": "^2.0.16"
},
"devDependencies": {
"@types/faker": "^4.1.10",
"@types/jest": "^25.1.4",
"@types/node": "^13.9.0",
"@types/node-fetch": "^2.5.5",
"dotenv-extended": "^2.7.1",
"faker": "^4.1.0",
"husky": ">=4",
"jest": "^25.1.0",
"lint-staged": ">=10",
"node-fetch": "^2.6.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"standard-version": "^9.0.0",
"ts-jest": "^25.2.1",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.1.0",
"typescript": "^3.8.3"
},
"engines": {
"node": ">=10.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,js,css,md}": "prettier --write"
}
}