-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
54 lines (54 loc) · 1.52 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": "cssnano-preset-simple",
"version": "0.0.0-development",
"description": "A simple cssnano preset",
"main": "dist/index.js",
"repository": "[email protected]:timer/cssnano-preset-simple.git",
"author": "Joe Haddad <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"dist/"
],
"scripts": {
"prebuild": "rimraf dist/ && node patch.js",
"build": "ncc build src/index.js -o dist --minify --external postcss --external caniuse-lite --external caniuse-lite/dist/unpacker/feature --external caniuse-lite/dist/unpacker/region --external caniuse-lite/dist/unpacker/agents",
"test": "jest",
"prepublishOnly": "yarn build && yarn test",
"semantic-release": "semantic-release",
"commit": "git-cz"
},
"devDependencies": {
"@vercel/ncc": "^0.28.6",
"browserslist-config-google": "^1.5.0",
"cssnano-preset-default": "^5.2.3",
"cz-conventional-changelog": "3.3.0",
"husky": "^4.3.8",
"jest": "^27.0.6",
"postcss": "^8.2.15",
"postcss-svgo": "file:./postcss-plugin-stub/",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.0",
"rimraf": "^3.0.0",
"semantic-release": "^19.0.2"
},
"dependencies": {
"caniuse-lite": "^1.0.30001314"
},
"peerDependencies": {
"postcss": "^8.2.15"
},
"resolutions": {
"postcss-svgo": "file:./postcss-plugin-stub/"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
}
}