-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 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
{
"name": "split-media-query-plugin",
"version": "0.1.0",
"main": "./dist/split-media-query-plugin.js",
"author": "Jungwoo-An <[email protected]>",
"types": "./dist/lib/index.d.ts",
"license": "MIT",
"scripts": {
"test": "mocha -r ts-node/register './tests/**/*.spec.ts'",
"test:watch": "mocha --require ts-node/register --watch --watch-files lib, tests/**/*.ts",
"build": "webpack --mode production --config ./webpack.config.js",
"build:docs": "yarn build && webpack --mode production --config ./example/webpack.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Jungwoo-An/split-media-query-plugin.git"
},
"bugs": {
"url": "https://github.com/Jungwoo-An/split-media-query-plugin/issues"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/css-tree": "^1.0.5",
"@types/jsdom": "^16.2.6",
"@types/mini-css-extract-plugin": "^1.2.2",
"@types/mocha": "^8.2.0",
"@types/webpack": "^4.41.26",
"@types/webpack-sources": "^2.1.0",
"bootstrap": "next",
"chai": "^4.2.0",
"css-loader": "^5.0.1",
"eslint": "^7.18.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"html-webpack-plugin": "^4.5.1",
"jsdom": "^16.4.0",
"memfs": "^3.2.0",
"mini-css-extract-plugin": "^1.3.4",
"mocha": "^8.2.1",
"ts-loader": "^8.0.14",
"ts-node": "^9.1.1",
"typescript": "^4.1.3",
"webpack": "^5.17.0",
"webpack-cli": "^4.4.0"
},
"dependencies": {
"css-tree": "^1.1.2",
"webpack-sources": "^2.2.0"
},
"peerDependencies": {
"html-webpack-plugin": ">=4.0",
"webpack": ">=4.0"
}
}