-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 852 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 852 Bytes
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
{
"name": "aesr-config",
"version": "0.6.0",
"description": "The utilities for AWS Extend Switch Roles configuration in INI format",
"author": "Toshimitsu Takahashi (Tilfin Ltd.)",
"license": "MIT",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"bin": {
"parse-aesr-config": "./bin/parse-aesr-config.js"
},
"files": [
"bin",
"lib"
],
"scripts": {
"clean": "rm -r lib/",
"build": "tsc -p tsconfig.build.json",
"test": "node --import tsx --test ./test/*.ts",
"format": "prettier --write \"bin/*.js\" \"src/**/*.ts\" \"test/**/*.ts\"",
"prepublishOnly": "npm test",
"prepare": "npm run build"
},
"devDependencies": {
"@types/node": "^25.6.0",
"prettier": "3.4.2",
"tsx": "^4.21.0",
"typescript": "^6.0.3"
},
"engines": {
"node": ">=22"
}
}