-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 848 Bytes
/
package.json
File metadata and controls
43 lines (43 loc) · 848 Bytes
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
{
"name": "ko-lints",
"version": "4.0.22",
"description": "lint tools used by ko",
"keywords": [
"ko",
"ko-script",
"eslint",
"prettier",
"lint",
"lint tools"
],
"bugs": {
"url": "https://github.com/DTStack/ko/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/DTStack/ko",
"directory": "packages/ko-lints"
},
"license": "MIT",
"typings": "index.d.ts",
"main": "lib/index.js",
"files": [
"lib/*",
"index.d.ts"
],
"scripts": {
"prepublishOnly": "rm -rf lib && tsc",
"build": "tsc",
"debug": "rm -rf lib && tsc --sourcemap -w"
},
"dependencies": {
"fast-glob": "^3.2.11"
},
"peerDependencies": {
"ko-lint-config": "workspace:*"
},
"devDependencies": {
"typescript": "^4.6.4",
"ko-lint-config": "workspace:*"
}
}