-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
77 lines (77 loc) · 1.84 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
68
69
70
71
72
73
74
75
76
77
{
"name": "postcss-smart-asset",
"version": "3.1.0",
"description": "PostCSS plugin to rebase or inline on url().",
"keywords": [
"css",
"postcss",
"postcss-plugin",
"url",
"rebase",
"inline",
"base64",
"assets"
],
"engines": {
"node": ">=14"
},
"license": "MIT",
"repository": "https://github.com/sebastian-software/postcss-smart-asset.git",
"author": {
"name": "Sebastian Software",
"email": "[email protected]",
"url": "https://www.sebastian-software.de"
},
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"pre-commit": "lint-staged",
"lint-staged": {
"*.js": "eslint --quiet"
},
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"asset-hash": "^4.1.0",
"core-js": "^3.21.1",
"mime": "^3.0.0",
"minimatch": "^3.0.4"
},
"peerDependencies": {
"postcss": "^8.4.12"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/plugin-transform-runtime": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@effective/eslint-config": "^4.0.2",
"@effective/prettier": "^4.3.4",
"babel-core": "^7.0.0-bridge.0",
"babel-jest": "^27.5.1",
"eslint": "^8.11.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"lint-staged": "^12.3.7",
"postcss": "^8.4.12",
"postcss-import": "^14.1.0",
"preppy": "^11.0.2",
"prettier": "^2.6.0",
"release-it": "^14.13.1",
"rimraf": "^3.0.2",
"typescript": "^4.6.2"
},
"scripts": {
"lint": "eslint '**/*.js'",
"format": "effective-prettier '**/*.{js,ts,json,md}'",
"release": "release-it --ci patch",
"release:minor": "release-it --ci minor",
"release:major": "release-it --ci major",
"test": "jest --coverage",
"prepare": "rimraf lib && preppy"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}