-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
90 lines (90 loc) · 2.62 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "ruler",
"version": "0.0.0",
"description": "",
"bugs": {
"url": "http://github.com/ianwremmel/browser-ruler/issues"
},
"license": "MIT",
"author": {
"name": "Ian Remmel",
"url": "http://ianwremmel.com/"
},
"repository": {
"type": "git",
"url": "git://github.com/ianwremmel/browser-ruler.git"
},
"scripts": {
"prebuild": "rimraf ./dist/*",
"build": "webpack --config webpack.config.js",
"eslint": "eslint --ignore-path .gitignore --ext js,ts",
"lint": "npm-run-all lint:*",
"lint:css": "stylelint ./src/**/*.css",
"lint:changelog": "commitlint --from origin/master --to HEAD",
"lint:js": "npm run eslint -- .",
"lint:types": "tsc",
"test": "wdio",
"validate": "web-ext lint --source-dir dist"
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.14.4",
"@babel/preset-typescript": "^7.14.5",
"@babel/register": "^7.13.8",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^8.3.4",
"@ianwremmel/eslint-plugin-ianwremmel": "^3.0.0",
"@semantic-release/exec": "^5.0.0",
"@types/chrome": "0.0.96",
"@types/mocha": "^8.2.3",
"@typescript-eslint/parser": "^3.10.1",
"@wdio/cli": "^5.23.0",
"@wdio/junit-reporter": "^6.0.1",
"@wdio/local-runner": "^5.22.4",
"@wdio/mocha-framework": "^6.0.1",
"@wdio/selenium-standalone-service": "^6.0.1",
"@wdio/spec-reporter": "^6.0.1",
"@wdio/sync": "^6.1.7",
"@wext/shipit": "^0.2.1",
"babel-loader": "^8.2.2",
"copy-webpack-plugin": "^5.1.1",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"eslint": "^5.16.0",
"eslint-config-prettier": "^4.3.0",
"eslint-plugin-compat": "^3.9.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-mocha": "^5.3.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-wdio": "^7.0.0",
"husky": "^7.0.1",
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"nws": "^1.1.1",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"semantic-release": "^17.4.4",
"style-loader": "^2.0.0",
"stylelint": "^13.13.1",
"stylelint-config-standard": "^20.0.0",
"typescript": "^4.3.5",
"web-ext": "^6.2.0",
"webdriver": "^6.1.2",
"webpack": "^4.44.2",
"webpack-cli": "^4.6.0",
"webpack-dev-server": "^3.11.2"
},
"lint-staged": {
"*.js": "npm run eslint"
},
"private": true,
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
}
}