-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
52 lines (52 loc) · 1.34 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
{
"name": "acss_devtool",
"version": "1.4.1",
"description": "devtool extension for making Acss users happier",
"main": "",
"scripts": {
"start": "webpack-dev-server --open --config webpack.dev.js",
"build": "webpack --config webpack.prod.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArvinH/acss_devtool.git"
},
"keywords": [
"devtool",
"extension",
"atomic",
"css"
],
"author": "ArvinH",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArvinH/acss_devtool/issues"
},
"homepage": "https://github.com/ArvinH/acss_devtool#readme",
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.4.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^0.1.19",
"copy-webpack-plugin": "^4.5.2",
"css-loader": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.4.1",
"mini-css-extract-plugin": "^0.4.1",
"optimize-css-assets-webpack-plugin": "^5.0.0",
"style-loader": "^0.21.0",
"uglifyjs-webpack-plugin": "^1.2.7",
"webpack": "^4.16.1",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.1.3",
"write-file-webpack-plugin": "^4.3.2",
"zip-webpack-plugin": "^3.0.0"
},
"jest": {
"transform": {
"^.+\\.js$": "babel-jest"
}
}
}