-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "htmllinter-repo",
"version": "0.1.0",
"private": true,
"description": "html linter based on posthtml",
"scripts": {
"lint": "eslint . --cache --ignore-path .gitignore",
"fixlint": "yarn lint -- --fix",
"build": "lerna run build",
"postinstall": "lerna bootstrap",
"bootstrap": "lerna exec npm install",
"test": "jest",
"linkDep": "lerna link",
"publish": "lerna publish",
"prepublish": "npm run build"
},
"repository": "anikethsaha/htmllinter",
"author": {
"name": "anikethsaha",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/node": "^7.8.4",
"@babel/preset-env": "^7.8.4",
"babel-eslint": "^10.0.3",
"cross-env": "^7.0.0",
"debug": "^4.1.1",
"del-cli": "^3.0.0",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-react": "^7.18.3",
"jest": "^25.1.0",
"lerna": "^3.20.2",
"prettier": "^1.19.1"
},
"dependencies": {
"posthtml": "^0.12.0"
}
}