-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
39 lines (39 loc) · 1.13 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
{
"name": "css-byebye",
"version": "4.0.1",
"description": "Remove the CSS rules that you don't want, with a list of selectors",
"homepage": "https://github.com/AoDev/css-byebye",
"repository": {
"type": "git",
"url": "https://github.com/AoDev/css-byebye.git"
},
"main": "lib/css-byebye.js",
"scripts": {
"release": "npm test && standard-version",
"lint": "eslint lib",
"test": "TZ=utc mocha 'lib/**/*spec.js'",
"test-unit": "TZ=utc mocha 'lib/**/*spec.js'"
},
"keywords": [
"css, byebye, remove, rules, selector, regex"
],
"author": "Kevin Purnelle <kevin.purnelle@gmail.com> (http://kevinpurnelle.com/)",
"license": "MIT",
"devDependencies": {
"eslint": "8.14.0",
"eslint-config-prettier": "8.5.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-prettier": "4.0.0",
"eslint-plugin-promise": "6.0.0",
"eslint-plugin-standard": "5.0.0",
"mocha": "9.2.2",
"postcss": "^8.0.0",
"prettier": "2.6.2",
"standard-version": "9.3.2"
},
"peerDependencies": {
"postcss": "^8.0.0"
}
}