-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
65 lines (65 loc) · 1.79 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
{
"name": "@zoxon/littera",
"version": "3.0.1",
"main": "dest/littera.css",
"description": "Nano typographic framework",
"keywords": [
"css",
"nano",
"typography",
"framework"
],
"homepage": "https://github.com/zoxon/littera",
"author": "Velicko Konstantin <[email protected]> (https://github.com/zoxon)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/zoxon/littera.git"
},
"bugs": {
"url": "https://github.com/zoxon/littera/issues"
},
"publishConfig": {
"access": "public"
},
"simple-git-hooks": {
"pre-commit": "npm run lint-staged"
},
"lint-staged": {
"*.{js,json,css,md,markdown}": [
"prettier --write",
"git add"
]
},
"scripts": {
"clean": "npm-run-all clean:*",
"clean:dest": "rimraf ./dest",
"mkdir": "npm-run-all mkdir:*",
"mkdir:dest": "mkdirp ./dest",
"build": "npm-run-all clean mkdir build:*",
"build:root": "postcss ./src/root.css --output ./dest/root.min.css",
"build:styles": "postcss ./src/index.css --output ./dest/littera.min.css",
"publish": "cross-env NODE_ENV=production npm run build",
"watch": "run-p watch:*",
"watch:root": "npm run build:root -- --watch",
"watch:styles": "npm run build:styles -- --watch",
"dev": "npm run watch",
"start": "npm run dev",
"lint-staged": "cross-env-shell PRE_COMMIT=true lint-staged"
},
"devDependencies": {
"autoprefixer": "^10.4.14",
"cross-env": "^7.0.3",
"cssnano": "^6.0.0",
"lint-staged": "^13.2.0",
"mkdirp": "^2.1.6",
"normalize.css": "^8.0.1",
"npm-run-all": "^4.1.5",
"postcss": "^8.4.21",
"postcss-cli": "^10.1.0",
"postcss-import": "^15.1.0",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"simple-git-hooks": "^2.8.1"
}
}