-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·57 lines (57 loc) · 1.8 KB
/
package.json
File metadata and controls
executable file
·57 lines (57 loc) · 1.8 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
50
51
52
53
54
55
56
57
{
"name": "wp-css-stats",
"version": "0.1.0",
"engines": {
"node": ">=4.2.4"
},
"description":
"[](https://travis-ci.org/Automattic/_s)",
"repository": {
"type": "git",
"url": "git+https://github.com/wking-io/wp_css_stats.git"
},
"main": "admin.js",
"scripts": {
"start": "webpack --watch",
"build": "webpack -p",
"release": "git checkout -B release && webpack -p && git add -f ./client/dist/* && git add -f ./server && git add -f ./css-stats.php && git add -f uninstall.php && git add -f README.md && git add -f LICENSE.txt && git add -f ./languages",
"test": "./node_modules/.bin/eslint client/src/js/*.js",
"prepublishOnly": "npm run build"
},
"keywords": [],
"author": "William King",
"license": "MIT",
"devDependencies": {
"autoprefixer-loader": "^3.2.0",
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"compression-webpack-plugin": "^1.0.0",
"css-loader": "^0.28.1",
"cssnano": "^3.10.0",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-loader": "^1.7.1",
"eslint-plugin-import": "^2.2.0",
"extract-text-webpack-plugin": "^2.1.0",
"file-loader": "^0.11.1",
"node-sass": "^4.5.3",
"postcss-loader": "^2.0.6",
"postcss-scss": "^1.0.2",
"sass-loader": "^6.0.5",
"style-loader": "^0.17.0",
"url-loader": "^0.5.8",
"webpack": "^2.5.1"
},
"dependencies": {
"isomorphic-fetch": "^2.2.1",
"parker": "0.0.10"
},
"bugs": {
"url": "https://github.com/wking-io/wp_css_stats/issues"
},
"homepage": "https://github.com/wking-io/wp_css_stats#readme"
}