This repository was archived by the owner on Sep 11, 2021. It is now read-only.
forked from FullHuman/purgecss-from-html
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.37 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
{
"name": "purgecss-from-svelte",
"version": "3.0.0-next.0",
"description": "Svelte extractor for purgecss - get all selectors from a svelte file",
"main": "./lib/purgesvelte.js",
"module": "./lib/purgesvelte.es.js",
"jsnext:main": "./lib/purgesvelte.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/langbamit/purgecss-from-svelte.git"
},
"keywords": [
"purgecss-from",
"purgecss",
"selectors",
"css",
"html"
],
"author": "langbamit",
"license": "MIT",
"bugs": {
"url": "https://github.com/langbamit/purgecss-from-svelte/issues"
},
"homepage": "https://github.com/langbamit/purgecss-from-svelte#readme",
"devDependencies": {
"@babel/preset-env": "^7.0.0",
"eslint": "^5.12.1",
"jest": "^24.0.0",
"lodash": "^4.17.11",
"postcss": "^7.0.14",
"postcss-selector-parser": "^6.0.2",
"rollup": "^1.1.2",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-watch": "^4.3.1"
},
"dependencies": {
"htmlparser2": "^6.0.0"
}
}