This repository was archived by the owner on Mar 29, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.33 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.33 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
{
"name": "purgecss-from-html",
"version": "1.1.0",
"description": "Html extractor for purgecss - get all selectors from a html file",
"main": "./lib/purgehtml.js",
"module": "./lib/purgehtml.es.js",
"jsnext:main": "./lib/purgehtml.es.js",
"scripts": {
"dev": "rollup -c rollup.config.js -w",
"build": "rollup -c rollup.config.js",
"test": "jest __tests__/index.js",
"lint": "eslint -c .eslintrc index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FullHuman/purgecss-from-html.git"
},
"keywords": [
"purgecss-from",
"purgecss",
"selectors",
"css",
"html"
],
"author": "Ffloriel",
"license": "MIT",
"bugs": {
"url": "https://github.com/FullHuman/purgecss-from-html/issues"
},
"homepage": "https://github.com/FullHuman/purgecss-from-html#readme",
"devDependencies": {
"@babel/preset-env": "^7.0.0",
"eslint": "^5.12.1",
"jest": "^24.0.0",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.2.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-watch": "^4.3.1"
},
"dependencies": {
"parse5": "^5.1.0",
"parse5-htmlparser2-tree-adapter": "^5.1.0"
}
}