-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.41 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
{
"name": "sift-css",
"version": "0.3.0",
"description": "Automatically remove unused CSS rules using Chrome code coverage",
"files": [
"dist/**/*"
],
"bin": {
"sift-css": "dist/bin/cli.js"
},
"scripts": {
"build": "tsc",
"format": "eslint src/** --fix",
"lint": "eslint src/**",
"test": "ts-node node_modules/jasmine/bin/jasmine --config=jasmine.json"
},
"dependencies": {
"postcss": "^8.4.32",
"puppeteer": "^21.6.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@types/node": "^20.10.4",
"@types/puppeteer": "^5.4.7",
"@types/yargs": "^17.0.32",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"devtools-protocol": "0.0.1236148",
"eslint": "^8.55.0",
"jasmine": "^5.1.0",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"author": "Theisen Sanders",
"license": "MIT",
"homepage": "https://github.com/tsand/sift-css#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/tsand/sift-css.git"
},
"keywords": [
"sift",
"puppeteer",
"css",
"coverage",
"cli"
],
"bugs": {
"url": "https://github.com/tsand/sift-css/issues"
}
}