forked from fatlama/secrets-mapper-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 loc) · 2.06 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
{
"name": "@fatlama/secrets-mapper",
"version": "1.0.0",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "github.com/fatlama/secrets-mapper-js",
"author": "Fat Llama",
"license": "UNLICENSED",
"bin": {
"secrets-mapper": "./bin/secrets-mapper"
},
"files": [
"bin/secrets-mapper",
"dist/**/*"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist coverage tsconfig.tsbuildinfo .eslintcache",
"format": "prettier --parser typescript --write src/**/*.ts",
"lint": "tsc --noEmit && eslint --cache --ext .ts src",
"release": "yarn clean && yarn build && yarn test && yarn lint",
"test": "jest"
},
"dependencies": {
"@fatlama/secrets-fetcher": "^1.2.0",
"minimist": "^1.2.0",
"shell-escape": "^0.2.0"
},
"devDependencies": {
"@fatlama/eslint-config-base": "^1.1.0",
"@fatlama/eslint-config-typescript": "^1.1.0",
"@tsconfig/node14": "^1.0.3",
"@types/jest": "^29.2.2",
"@types/minimist": "^1.2.0",
"@types/node": "^12.7.1",
"@types/shell-escape": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^1.9.0",
"@typescript-eslint/parser": "^1.9.0",
"codecov": "^3.8.3",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-config-standard": "^12.0.0",
"eslint-import-resolver-typescript": "^1.1.1",
"eslint-plugin-eslint-comments": "^3.1.1",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-unicorn": "^8.0.2",
"jest": "^29.3.1",
"prettier": "^1.17.1",
"standard": "^12.0.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.ts"
],
"transform": {
".ts$": "ts-jest"
},
"testEnvironment": "node",
"testRegex": ".*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
]
}
}