generated from Webeleon/typecript-npm-package-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "@webeleon/scss-toolkit",
"version": "0.0.4",
"description": "collection of scss classes and mixins",
"main": "lib/styles.scss",
"scripts": {
"patch": "npm version patch && npm publish",
"format": "prettier --write '**/*.scss'",
"build": "tsc",
"prepare": "husky install",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Webeleon/scss-toolkit"
},
"bugs": {
"url": "https://github.com/Webeleon/scss-toolkit/issues"
},
"contributors": [
{
"name": "Julien Prugne",
"email": "[email protected]"
}
],
"keywords": [
"webeleon",
"scss",
"toolkit"
],
"author": "Julien Prugne<[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "13.2.1",
"@commitlint/config-conventional": "13.2.0",
"husky": "7.0.4",
"lint-staged": "11.2.6",
"prettier": "2.6.2",
"standard-version": "9.3.2"
},
"lint-staged": {
"*.{scss,json,md}": "prettier --write"
}
}