-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 1.54 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": "aetna",
"version": "1.0.2",
"description": "Front-end style guide and pattern library for Pressbooks.",
"style": "assets/styles/aetna.scss",
"scripts": {
"build": "mix",
"fractal:build": "fractal build",
"fractal:start": "fractal start --sync",
"lint:scripts": "eslint \"src/components/**/*.js\"",
"lint:styles": "stylelint \"assets/styles/**/*.scss\"",
"lint": "run-s lint:*",
"production": "mix --production",
"rmdist": "rimraf public",
"start": "mix watch",
"test": "npm run lint"
},
"dependencies": {
"@frctl/fractal": "^1.5.14"
},
"devDependencies": {
"@commitlint/cli": "^17.0.3",
"@commitlint/config-conventional": "^17.0.3",
"husky": "^8.0.1",
"npm-run-all": "^4.1.5",
"pressbooks-build-tools": "^4.0.0"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"eslintConfig": {
"extends": "./node_modules/pressbooks-build-tools/config/eslint.js"
},
"stylelint": {
"extends": "./node_modules/pressbooks-build-tools/config/stylelint.js",
"rules": {
"no-descending-specificity": null
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/pressbooks/aetna.git"
},
"keywords": [
"styleguide",
"pattern-library"
],
"author": "Pressbooks (Book Oven Inc.) <code@pressbooks.com>",
"license": "GPL-2.0+",
"bugs": {
"url": "https://github.com/pressbooks/aetna/issues"
},
"homepage": "https://github.com/pressbooks/aetna#readme",
"engines": {
"node": ">= 14"
}
}