-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 2.53 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
{
"name": "ftnt-devops-ci",
"version": "1.1.8",
"description": "A Node.js project format checking and linting tool for CI practices.",
"main": "bin/ftnt-devops-ci.js",
"scripts": {
"check:format": "./bin/ftnt-devops-ci.js check --format-conf=templates/.prettierrc --format-ignore=templates/.prettierignore \"**/*.{ts,js,json}\"",
"fix:format": "./bin/ftnt-devops-ci.js fix --format-conf=templates/.prettierrc --format-ignore=templates/.prettierignore \"**/*.{ts,js,json}\"",
"check:lint": "./bin/ftnt-devops-ci.js check --lint-conf=templates/.eslintrc --lint-ignore=templates/.eslintignore \"**/*.{ts,js,json}\"",
"fix:lint": "./bin/ftnt-devops-ci.js fix --lint-conf=templates/.eslintrc --lint-ignore=templates/.eslintignore \"**/*.{ts,js,json}\"",
"check": "./bin/ftnt-devops-ci.js check --lint-conf=templates/.eslintrc --format-conf=templates/.prettierrc --lint-ignore=templates/.eslintignore --format-ignore=templates/.prettierignore \"**/*.{ts,js,json}\"",
"fix": "./bin/ftnt-devops-ci.js fix --lint-conf=templates/.eslintrc --format-conf=templates/.prettierrc --lint-ignore=templates/.eslintignore --format-ignore=templates/.prettierignore \"**/*.{ts,js,json}\"",
"check-relative": "cd templates && ../bin/ftnt-devops-ci.js check --lint --format --print-config-paths '../**/*.{ts,js,json}'",
"test": "npm run check && npm run check:format && npm run check:lint && npm run fix && npm run fix:format && npm run fix:lint && npm run check-relative && mocha",
"make-dist": "npm pack"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fortinet/ftnt-devops-ci.git"
},
"keywords": [
"format",
"lint",
"nodejs"
],
"author": "Fortinet <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fortinet/ftnt-devops-ci/issues"
},
"homepage": "https://github.com/fortinet/ftnt-devops-ci#readme",
"bin": {
"ftnt-devops-ci": "bin/ftnt-devops-ci.js"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"chalk": "^3.0.0",
"commander": "^4.1.1",
"comment-json": "^2.4.2",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-mocha": "^6.3.0",
"inquirer": "^7.3.3",
"path-parse": "^1.0.7",
"prettier": "^2.4.1",
"typescript": "^4.4.4"
},
"devDependencies": {
"mocha": "^9.1.3"
}
}