-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 loc) · 1.54 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
{
"name": "@fjandin/config-man",
"version": "1.7.0",
"description": "Config manager",
"main": "index.js",
"author": "René Bischoff <[email protected]> (https://github.com/fjandin)",
"homepage": "https://github.com/fjandin/config-man",
"readme": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/fjandin/config-man.git"
},
"bugs": {
"url": "https://github.com/fjandin/config-man/issues",
"email": "[email protected]"
},
"license": "MIT",
"private": false,
"scripts": {
"peer": "yarn add --peer --frozen-lockfile aws-sdk@^2.895.0",
"lint": "eslint src --ext .ts,.js",
"lint:fix": "eslint src --ext .ts,.js --fix",
"typecheck": "tsc --noEmit",
"test": "jest",
"build": "rm -rf dist; tsc -p tsconfig.build.json; cp package.json ./dist; cp README.md ./dist; cp LICENSE ./dist; cp SECURITY.md ./dist; cp .npmrc ./dist"
},
"dependencies": {
"flat": "^5.0.2",
"json5": "^2.2.0"
},
"devDependencies": {
"@types/flat": "^5.0.1",
"@types/jest": "^26.0.23",
"@types/node": "^15.0.1",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"ts-jest": "^26.5.5",
"typescript": "^4.2.4"
},
"peerDependencies": {
"aws-sdk": "^2.895.0"
}
}