-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.24 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
{
"name": "@hacss/build",
"version": "4.3.0",
"description": "Build logic that can be shared between CLI and other tools",
"main": "index.js",
"scripts": {
"lint": "eslint --cache index.js && prettier --parser babel --check index.js",
"test": "echo \"No tests available.\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/hacss/build.git"
},
"keywords": [
"hacss",
"build",
"inline",
"style",
"css",
"preprocessor",
"cli",
"webpack",
"tools"
],
"author": "Nick Saunders",
"license": "MIT",
"engines": {
"node": ">=8.17.0"
},
"bugs": {
"url": "https://github.com/hacss/build/issues"
},
"homepage": "https://hacss.io",
"devDependencies": {
"@hacss/eslint-config": "^1.0.0",
"@hacss/prettier-config": "^1.0.0",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.2",
"prettier": "^2.0.5"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --parser babel --write",
"eslint --cache --fix",
"npm test"
]
},
"prettier": "@hacss/prettier-config",
"dependencies": {
"@hacss/core": ">=4.0.0 && <6.0.0",
"globby": "^11.0.0"
}
}