-
-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.8 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.8 KB
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
76
77
78
79
80
{
"name": "ts-standard",
"description": "TypeScript Standard Style based on StandardJS",
"version": "12.0.2",
"main": "./index.js",
"type": "module",
"bin": {
"ts-standard": "./cli.js"
},
"bugs": {
"url": "https://github.com/standard/ts-standard/issues"
},
"engines": {
"node": "^12.22.0 || ^14.17.0 || >=16.0.0"
},
"author": "Todd Bluhm",
"license": "MIT",
"homepage": "https://github.com/standard/ts-standard",
"keywords": [
"TypeScript Standard Style",
"check",
"checker",
"code",
"code checker",
"code linter",
"code standards",
"code style",
"enforce",
"eslint",
"lint",
"policy",
"quality",
"simple",
"standard",
"standard style",
"style",
"style checker",
"style linter",
"verify",
"typescript",
"standardjs",
"tslint"
],
"ts-standard": {
"ignore": [
"test/fixtures/*.ts"
]
},
"scripts": {
"lint:standard": "standard",
"lint:ts-standard": "node cli.js",
"lint:commit": "commitlint",
"test": "tape test/*.js"
},
"peerDependencies": {
"typescript": "*"
},
"dependencies": {
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.1",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-react": "^7.28.0",
"minimist": "^1.2.6",
"pkg-conf": "^4.0.0",
"standard-engine": "^15.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"@types/minimist": "^1.2.2",
"@types/node": "^18.0.6",
"standard": "^17.0.0",
"tape": "^5.5.3"
}
}