-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.06 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
{
"name": "ms-sass",
"version": "1.0.0",
"description": "A lite dart-sass implementation for modularscale-sass.",
"main": "./src/modularscale.scss",
"scripts": {
"lint": "stylelint src/modularscale.scss",
"test": "jest --silent",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/P233/ms-sass.git"
},
"keywords": [
"sass",
"scss",
"modularscale",
"typography"
],
"author": "Peiwen Lu",
"license": "MIT",
"bugs": {
"url": "https://github.com/P233/ms-sass/issues"
},
"homepage": "https://github.com/P233/ms-sass#readme",
"devDependencies": {
"@p233/stylelint-config-scss": "^4.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"postcss": "^8.4.31",
"prettier": "^3.0.3",
"sass": "^1.69.5",
"sass-true": "^7.0.0",
"stylelint": "^15.11.0"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.scss": [
"prettier --write",
"stylelint --fix"
]
},
"files": [
"src"
]
}