-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.05 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.05 KB
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
{
"name": "refinecss",
"version": "0.0.0",
"description": "Post build unused css remover",
"main": "lib/index.js",
"bin": {
"refinecss": "lib/cli.js"
},
"scripts": {
"dev": "tsc --watch",
"build": "npm run clean && tsc && npm link",
"clean": "rimraf ./lib",
"format": "prettier --write ."
},
"keywords": [
"css",
"purifycss",
"unusedcss",
"purgecss",
"postbuild"
],
"repository": {
"type": "git",
"url": "git+https://github.com/appzic/refinecss.git"
},
"author": "Yasitha Nadeeshan",
"license": "MIT",
"bugs": {
"url": "https://github.com/appzic/refinecss/issues"
},
"homepage": "https://github.com/appzic/refinecss#readme",
"devDependencies": {
"@types/css": "^0.0.33",
"@types/recursive-readdir": "^2.2.1",
"@types/yargs": "^15.0.4",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.4"
},
"dependencies": {
"chalk": "^4.0.0",
"console-table-printer": "^2.11.1",
"css": "^3.0.0",
"istextorbinary": "^6.0.0",
"recursive-readdir": "^2.2.3",
"yargs": "^15.4.1"
}
}