-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
67 lines (67 loc) · 1.64 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "csso-webpack-plugin",
"version": "2.0.0-beta.3",
"author": "zoobestik <[email protected]>",
"description": "CSSO minification files to serve your webpack bundles",
"homepage": "https://github.com/zoobestik/csso-webpack-plugin",
"bugs": {
"url": "https://github.com/zoobestik/csso-webpack-plugin/issues"
},
"keywords": [
"css",
"minify",
"csso",
"webpack",
"optimisation"
],
"main": "./lib/index",
"engines": {
"node": ">=8.0.0"
},
"licenses": [
{
"type": "MIT",
"url": "http://www.opensource.org/licenses/mit-license.php"
}
],
"repository": {
"type": "git",
"url": "https://github.com/zoobestik/csso-webpack-plugin.git"
},
"scripts": {
"lint": "eslint --cache .",
"test": "npm run build && mocha \"./test/*/*.spec.js\"",
"test-prepare": "cd test/webpack2 && npm install && cd ../webpack4 && npm install && cd ../webpack5 && npm install",
"build": "babel src --out-dir lib",
"prepublish": "npm run build"
},
"precommit": [
"lint"
],
"files": [
"lib",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"typings": "lib/index.d.ts",
"dependencies": {
"@types/webpack": ">=4.0",
"core-js": "^3.10.1",
"csso": "^4.0.2",
"source-map": "^0.7.3",
"webpack-sources": "^1.0.1"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/preset-env": "^7.7.6",
"babel-eslint": "^10.0.0",
"eslint": "^6.7.2",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.7.0",
"mocha": "^6.2.2",
"pre-commit": "^1.2.2",
"rimraf": "^3.0.0"
}
}