forked from painty/CSS-Used-ChromeExt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1009 Bytes
/
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
{
"name": "css-used-chrome-ext",
"version": "2.5.0",
"description": "A chrome extension to get all css rules used by the selected DOM and its children.",
"main": "./src/main.js",
"scripts": {
"build": "webpack",
"test": "webpack-dev-server --open --config ./test/webpack.config.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/painty/CSS-Used-ChromeExt.git"
},
"keywords": [
"chrome-extension",
"chrome-devtools",
"css-usage",
"css-rules"
],
"author": "Bobscript",
"license": "MIT",
"bugs": {
"url": "https://github.com/painty/CSS-Used-ChromeExt/issues"
},
"homepage": "https://github.com/painty/CSS-Used-ChromeExt#readme",
"dependencies": {
"is-utf8": "^0.2.1",
"postcss": "^7.0.17",
"postcss-safe-parser": "^4.0.1",
"urijs": "^1.19.1"
},
"devDependencies": {
"terser-webpack-plugin": "^1.3.0",
"webpack": "^4.35.0",
"webpack-cli": "^3.3.4",
"webpack-dev-server": "^3.7.2"
}
}