forked from purifycss/purifycss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.02 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
{
"name": "purify-css",
"version": "1.1.9",
"description": "Removed unused css. Compatible with single-page apps.",
"main": "./src/purifycss.js",
"dependencies": {
"clean-css": "^3.2.10",
"glob": "^6.0.4",
"rework": "^1.0.1",
"uglifyjs": "^2.4.10",
"yargs": "^3.10.0"
},
"devDependencies": {
"chai": "^3.0.0",
"eslint": "^0.24.1",
"mocha": "^2.2.5"
},
"scripts": {
"pretest": "eslint src && eslint bin/purifycss",
"test": "node ./node_modules/mocha/bin/mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/purifycss/purifycss.git"
},
"keywords": [
"optimize",
"css",
"remove",
"unused"
],
"files": [
"bin",
"src",
"LICENSE",
"package.json",
"README.md"
],
"author": "Kenny Tran, Matthew Rourke, Phoebe Li",
"license": "MIT",
"bugs": {
"url": "https://github.com/purifycss/purifycss/issues"
},
"bin": {
"purifycss": "./bin/purifycss"
},
"homepage": "https://github.com/purifycss/purifycss"
}