This repository has been archived by the owner on Mar 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.51 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
{
"name": "@hacss/plugin-expand",
"version": "1.2.0",
"description": "Create simple shorthand properties that expand one declaration into multiple.",
"main": "dist/hacss-plugin-expand.umd.js",
"scripts": {
"prepublishOnly": "webpack",
"pretest": "webpack",
"test": "node test"
},
"repository": {
"type": "git",
"url": "https://github.com/hacss/plugin-expand.git"
},
"keywords": [
"hacss",
"plugin",
"expand",
"properties",
"declarations",
"css",
"atomic",
"inline",
"styles"
],
"author": "Nick Saunders",
"license": "MIT",
"bugs": {
"url": "https://github.com/hacss/plugin-expand/issues"
},
"homepage": "https://hacss.io/",
"devDependencies": {
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@hacss/compose-plugins": "^1.0.1",
"@hacss/eslint-config": "^1.0.0",
"@hacss/plugin-copy": "^1.1.1",
"@hacss/plugin-delete": "^1.1.0",
"@hacss/prettier-config": "^1.0.0",
"babel-loader": "^8.1.0",
"core-js-pure": "^3.6.5",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"dependencies": {},
"prettier": "@hacss/prettier-config",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --parser babel --write",
"eslint --cache --fix",
"npm test"
]
},
"peerDependencies": {
"@hacss/core": ">= 1.0.0 < 3.0.0"
}
}