-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.22 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": "@ping-identity/dvlint",
"version": "1.0.3",
"description": "PingOne DaVinci Flow Linter",
"homepage": "https://library.pingidentity.com/page/davinci-linter-cli",
"main": "lib/index.js",
"bin": {
"dvlint": "lib/dvlint"
},
"files": [
"bin",
"lib",
"README.md",
"LICENSE"
],
"scripts": {
"test": "jest --verbose",
"eslint": "eslint -c .eslintrc ./lib/**"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pingidentity/dvlint.git"
},
"keywords": [
"pingone",
"davinci",
"flow",
"linter"
],
"author": "Ping Identity (https://www.pingidentity.com/)",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/pingidentity/dvlint/issues"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.12.0",
"@typescript-eslint/parser": "^7.12.0",
"eslint": "^8.19.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.6.2",
"prettier": "^3.3.0"
},
"dependencies": {
"colors": "^1.4.0",
"commander": "^12.1.0",
"diff": "^5.2.0",
"table": "^6.8.1"
}
}