-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.68 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
{
"name": "@iac-factory/eslint-settings",
"version": "1.7.36",
"description": "ESLint Styling and Unit-Testing",
"scripts": {
"setup": "npx tsc --init",
"lint": "npm run build && npx eslint .",
"lint-fix": "npx eslint --fix .",
"lint-debug": "npm run build && npx eslint --debug .",
"lint-test": "npm run build && npx eslint --fix-dry-run .",
"build": "tsc --build tsconfig.json",
"pretest": "npm run build",
"update-snapshots": "npm run build && node --experimental-vm-modules $(command -v jest) --config jest.config.js --injectGlobals --detectOpenHandles --update-snapshot",
"prepublishOnly": "npm run test",
"test": "node --experimental-vm-modules $(command -v jest) --config jest.config.js --injectGlobals --detectOpenHandles"
},
"license": "BSD-3-Clause",
"author": {
"name": "Jacob B. Sanders",
"url": "https://github.com/iac-factory",
"organization": true
},
"publishConfig": {
"access": "public",
"tag": "latest"
},
"dependencies": {
"eslint-plugin-jest": "^26.5.3",
"@typescript-eslint/eslint-plugin": "^5.29.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.18.2",
"@jest/globals": "^28.1.0",
"@jest/types": "^28.1.0",
"@types/jest": "^28.1.3",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.40",
"@typescript-eslint/parser": "^5.27.0",
"eslint": "^8.17.0",
"eslint-plugin-jest": "^26.5.3",
"jest": "^28.1.0",
"typescript": "^4.7.3"
},
"eslintConfig": {
"extends": [
".eslintrc.json"
]
}
}