-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
39 lines (39 loc) · 949 Bytes
/
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
{
"name": "eslint-plugin-wxml",
"version": "0.8.0",
"description": "eslint plugin for wxml",
"main": "lib/index.js",
"type": "commonjs",
"author": "iChenLei <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wxmlfile/eslint-plugin-wxml.git"
},
"keywords": [
"wxml",
"eslint",
"plugin",
"wechat",
"miniprogram"
],
"scripts": {
"lint": "eslint .",
"prepublishOnly": "npm run format && npm run test",
"format": "prettier \"./lib\" \"./tests\" \"./tools\" --write ",
"test": "mocha \"tests/**/*.js\" --reporter dot"
},
"peerDependencies": {
"eslint": "^7.0.0 || ^8.0.0 || ^9.0.0"
},
"devDependencies": {
"eslint": "^7.32.0",
"eslint-plugin-eslint-plugin": "^4.0.1",
"eslint-plugin-node": "^11.1.0",
"mocha": "^10.0.0",
"prettier": "^2.5.1"
},
"dependencies": {
"@wxml/parser": "^0.4.0"
}
}