-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.48 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
{
"name": "@captaincss/captaincss",
"version": "2.6.0",
"description": "An extensible, scalable set of CSS objects and utilities that harness Tailwind and ITCSS to provide structure to teams and large or long-lasting projects",
"license": "MIT",
"repository": "https://github.com/hex-digital/captaincss.git",
"bugs": "https://github.com/hex-digital/captaincss/issues",
"homepage": "https://hexdigital.com",
"contributors": [
"Jamie Warburton <[email protected]>"
],
"main": "src/index.js",
"files": [
"assets",
"src",
"stubs",
"CHANGELOG.md",
"defaultConfig.js",
"helpers.js",
"package.json",
"yarn.lock"
],
"scripts": {
"style": "eslint .",
"get-version": "echo $npm_package_version"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"eslint": "^7.12.1",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"prettier": "^2.1.2",
"semantic-release": "^17.2.2",
"semantic-release-slack-bot": "^1.6.2",
"tailwindcss": "^3"
},
"dependencies": {
"lodash": "^4.17.20",
"reduce-css-calc": "^2.1.8"
},
"browserslist": [
"> 1%",
"last 4 versions",
"not edge <= 18",
"not ie 11",
"not op_mini all"
]
}