-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.14 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.14 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
{
"name": "@cesarlai/stylelib",
"version": "0.1.0",
"main": "index.js",
"repository": "git@github.com:CesarLai/stylelib.git",
"author": "Cesar Lai <git@cesarlai.com>",
"description": "A less/sass lib that provide useful utils (eg: mixins, function), help you get complex display easily.",
"license": "MIT",
"private": true,
"scripts": {
"build:less": "pnpm --filter @cesarlai/stylelib-less build",
"build:scss": "pnpm --filter @cesarlai/stylelib-scss build",
"build:dev": "pnpm -r build:dev",
"build": "pnpm -r build",
"publish": "pnpm -r publish --no-git-checks",
"lint": "pnpm -r lint",
"commit": "git-cz"
},
"devDependencies": {
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"git-cz": "^4.9.0",
"husky": "6.0.0",
"lint-staged": "11.2.6",
"rimraf": "4.0.1",
"stylelint": "13.12.0",
"stylelint-config-prettier": "8.0.2",
"stylelint-config-standard": "21.0.0",
"stylelint-declaration-block-no-ignored-properties": "2.3.0",
"stylelint-order": "4.1.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}