forked from faceyspacey/extract-css-chunks-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3.14 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 3.14 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "extract-css-chunks-webpack-plugin",
"version": "3.2.1",
"author": "James Gillmore <james@faceyspacey.com>",
"contributors": [
"Zack Jackson <zack@ScriptedAlchemy.com> (https://github.com/ScriptedAlchemy)"
],
"description": "Extract CSS from chunks into stylesheets + HMR. Supports Webpack 4 + SSR",
"engines": {
"node": ">= 6.9.0 <7.0.0 || >= 8.9.0"
},
"main": "dist/cjs.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"keywords": [
"css",
"chunks",
"code splitting",
"mini-css",
"hot",
"hmr",
"universal",
"webpack",
"webpack 4",
"css-hot-loader",
"extract-css-chunks-webpack-plugin"
],
"license": "MIT",
"scripts": {
"start": "npm run build -- -w",
"build": "cross-env NODE_ENV=production babel src -d dist --ignore 'src/**/*.test.js' --copy-files",
"clean": "del-cli dist",
"lint": "eslint --cache --fix src",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"security": "nsp check",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom='src/**/*.js' --coverage",
"test:example": "npm run build && webpack-dev-server test/manual/src/index.js --config test/manual/webpack.config.js",
"ci:lint": "npm run lint && npm run security",
"ci:test": "npm run test -- --runInBand",
"ci:coverage": "npm run test:coverage -- --runInBand",
"build:example": "npm run build && webpack-dev-server test/manual/src/index.js --open --config test/manual/webpack.config.js",
"cm": "git-cz",
"semantic-release": "npx semantic-release",
"travis": "npm run ci:coverage",
"defaults": "webpack-defaults"
},
"peerDependencies": {
"webpack": "^4.4.0"
},
"dependencies": {
"loader-utils": "^1.1.0",
"lodash": "^4.17.11",
"normalize-url": "^4.1.0",
"schema-utils": "^1.0.0",
"webpack-sources": "^1.1.0"
},
"devDependencies": {
"@commitlint/cli": "^6.1.3",
"@commitlint/config-conventional": "^6.1.3",
"@webpack-contrib/eslint-config-webpack": "^2.0.4",
"babel-cli": "^6.26.0",
"babel-jest": "^22.2.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"conventional-github-releaser": "^2.0.2",
"cross-env": "^5.1.3",
"css-loader": "^0.28.10",
"del": "^3.0.0",
"del-cli": "^1.1.0",
"eslint": "^4.17.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-prettier": "^2.6.0",
"file-loader": "^1.1.11",
"husky": "^0.14.3",
"jest": "^22.2.2",
"lint-staged": "^6.1.0",
"memory-fs": "^0.4.1",
"pre-commit": "^1.2.2",
"prettier": "^1.11.1",
"semantic-release": "^15.13.1",
"webpack": "^4.14.0",
"webpack-cli": "^2.0.13",
"webpack-defaults": "^2.3.0",
"webpack-dev-server": "^3.1.1"
},
"homepage": "http://github.com/faceyspacey/extract-css-chunks-webpack-plugin",
"repository": {
"type": "git",
"url": "https://github.com/faceyspacey/extract-css-chunks-webpack-plugin.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}