-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.07 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
{
"name": "@rucas/shh",
"version": "1.0.1",
"keywords": [
"security",
"aws",
"express"
],
"description": "AWS KMS Express Middleware",
"main": "index.js",
"engines": {
"node": ">=6"
},
"scripts": {
"lint": "yarn standard",
"test": "yarn jest"
},
"standard": {
"env": [
"jest"
]
},
"husky": {
"hooks": {
"pre-commit": "yarn lint",
"pre-push": "yarn test"
}
},
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.js?$": "babel-jest"
}
},
"repository": "https://github.com/rucas/shh.git",
"author": "rucas <lucas.rondenet@gmail.com>",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"devDependencies": {
"babel-preset-env": "^1.7.0",
"express": "^4.16.3",
"husky": "^1.2.0",
"jest": "^23.1.0",
"pkg-ok": "^2.2.0",
"standard": "^12.0.0",
"supertest": "^3.1.0"
},
"dependencies": {
"aws-sdk": "^2.363.0",
"debug": "^4.0.1",
"dotenv": "^6.0.0",
"lru-cache": "^4.1.3",
"ms": "^2.1.1"
}
}