-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
37 lines (37 loc) · 1.22 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
{
"name": "css-bingo",
"version": "1.4.6",
"description": "Every byte counts when creating good user experiences for mobile devices and slow networks. Don't let the browser do unnecessary work. css-bingo finds all extraneous rules and selectors in your CSS, not used in your html, and removes them.",
"main": "index.js",
"scripts": {
"cover": "istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
"postversion": "git push && git push --tags",
"preversion": "npm test",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonatanpedersen/css-bingo.git"
},
"author": "Jonatan Pedersen",
"license": "MIT",
"bugs": {
"url": "https://github.com/jonatanpedersen/css-bingo/issues"
},
"homepage": "https://github.com/jonatanpedersen/css-bingo#readme",
"dependencies": {
"css": "^3.0.0",
"css-selector-parser": "^1.4.1",
"debug": "^4.1.1",
"htmlparser2": "^4.1.0"
},
"devDependencies": {
"coveralls": "^3.1.0",
"eslint": "^7.7.0",
"istanbul": "^0.4.5",
"mocha": "^8.1.1",
"mocha-eslint": "^6.0.0",
"mocha-lcov-reporter": "^1.3.0"
}
}