forked from fourTheorem/slic-watch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.47 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
{
"name": "slic-watch",
"version": "2.1.2",
"description": "Root project for SLIC Watch",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/fourTheorem/slic-watch.git"
},
"workspaces": [
"core",
"cdk-test-project",
"serverless-plugin",
"cf-macro",
"serverless-test-project",
"serverless-test-project-alb",
"sam-test-project"
],
"scripts": {
"audit": "npm audit --omit dev && npm audit --workspaces --omit dev",
"lint": "eslint .",
"lintfix": "eslint --cache --fix .",
"test:lint": "eslint .",
"test:packages": "tap --coverage-report=html --no-browser --no-check-coverage */tests/**/*.test.js",
"test": "npm run test:lint && npm run test:packages",
"postversion": "./scripts/sync-macro-version.js",
"prepare": "test ! -d '.git' || is-ci || husky install"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.36.2",
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"husky": "^6.0.0",
"lint-staged": "^11.0.0",
"tap": "^16.3.0"
},
"engines": {
"node": ">=12.0"
},
"engineStrict": true,
"license": "Apache",
"lint-staged": {
"*.js": [
"eslint --cache --fix"
]
},
"dependencies": {
"case": "^1.6.3",
"lodash": "^4.17.21",
"yaml": "^1.10.2"
}
}