-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
61 lines (61 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
57
58
59
60
61
{
"name": "skylint",
"version": "1.0.2",
"description": "Skyline 小程序迁移工具. Migration assistant for Skyline miniapp.",
"main": "dist/index.mjs",
"type": "module",
"scripts": {
"build": "unbuild",
"start": "node dist/cli.mjs",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest"
},
"bin": {
"skylint": "./dist/cli.mjs"
},
"keywords": [
"skyline",
"linter",
"migration"
],
"author": "maniacata",
"license": "MIT",
"files": [
"./dist",
"./LICENSE",
"./third-party-licenses.txt"
],
"dependencies": {
"@babel/code-frame": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"acorn": "^8.7.1",
"chalk": "^5.0.1",
"commander": "^9.4.0",
"css-select": "^5.1.0",
"css-tree": "^2.1.0",
"dom-serializer": "^2.0.0",
"domhandler": "^5.0.3",
"domutils": "^3.0.1",
"globby": "^13.1.2",
"htmlparser2": "^8.0.1",
"inquirer": "^9.0.1",
"jest": "^28.1.3",
"json-to-ast": "^2.1.0",
"line-column": "^1.0.2",
"magic-string": "^0.26.2",
"parse5": "^7.0.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"unbuild": "^0.7.4"
},
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@types/babel__code-frame": "^7.0.3",
"@types/inquirer": "^8.2.1",
"@types/json-to-ast": "^2.1.2",
"@types/css-tree": "^1.0.7",
"@types/line-column": "^1.0.0",
"@types/node": "^18.0.6",
"babel-jest": "^28.1.3"
}
}