-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
44 lines (44 loc) · 1.12 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
{
"name": "@thinkinglabs/aws-iam-policy",
"version": "3.1.0",
"description": "TypeScript library for handling AWS IAM Policy documents",
"homepage": "https://github.com/thinkinglabs/aws-iam-policy",
"repository": "git://github.com/thinkinglabs/aws-iam-policy.git",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"lint": "eslint ./src/**/* ./tests/**/*",
"test": "npm run lint && mocha",
"preversion": "npm test",
"postversion": "git push origin main --follow-tags",
"prepublishOnly": "npm test && tsc"
},
"files": [
"dist",
"README.md",
"LICENSE.md"
],
"keywords": [
"aws",
"iam",
"policy"
],
"author": "ThinkingLabs",
"license": "MIT",
"volta": {
"node": "22.9.0"
},
"devDependencies": {
"@types/chai": "^4.2.15",
"@types/mocha": "^8.2.0",
"@types/node": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"chai": "^4.2.0",
"eslint": "^7.19.0",
"eslint-config-google": "^0.14.0",
"mocha": "^8.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.5"
}
}