-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "@kdcio/aws-policy",
"version": "0.3.2",
"description": "Generate AWS auth policy for API Gateway lambda authorizer",
"main": "dist/index.js",
"files": [
"dist/*"
],
"scripts": {
"bundle": "rollup -c",
"clean": "rm -fR dist",
"build": "npm run clean && npm run bundle",
"lint": "eslint src --ext .js",
"test": "jest",
"watch": "jest --watchAll --runInBand",
"coverage": "jest --coverage",
"pretty": "pretty-quick"
},
"keywords": [
"kdc",
"aws",
"authorizer",
"lambda",
"policy",
"api",
"gateway"
],
"author": {
"name": "Ian Dela Cruz",
"email": "ian@kdcsoftware.com",
"url": "https://www.kdcsoftware.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kdcio/aws-policy/issues"
},
"homepage": "https://github.com/kdcio/aws-policy#readme",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/plugin-transform-runtime": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@rollup/plugin-commonjs": "^15.1.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@types/jest": "^25.2.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.0",
"eslint": "^7.11.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.0",
"jest-sonar-reporter": "^2.0.0",
"lint-staged": "^10.4.2",
"parcel": "^2.0.0-nightly.426",
"prettier": "^2.1.2",
"pretty-quick": "^2.0.2",
"rollup": "^2.32.0",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-visualizer": "^4.1.1"
},
"dependencies": {
"@babel/runtime": "^7.13.10"
},
"targets": {
"main": {
"engines": {
"node": ">=10.x"
}
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint src --ext .js --fix",
"pretty-quick --staged"
]
}
}