-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.17 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.17 KB
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
{
"name": "@hacss/cli",
"version": "4.1.0",
"description": "Hacss Command-Line Interface",
"main": "index.js",
"bin": {
"hacss": "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/cli.git"
},
"keywords": [
"command-line",
"interface",
"cli",
"hacss",
"css",
"tool",
"build"
],
"author": "Nick Saunders",
"license": "MIT",
"bugs": {
"url": "https://github.com/hacss/cli/issues"
},
"homepage": "https://hacss.io",
"dependencies": {
"@hacss/build": "^4.3.0",
"ramda": "^0.27.0"
},
"prettier": "@hacss/prettier-config",
"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"
]
}
}