-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.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": "lambda-sass",
"version": "2.1.0",
"description": "Functional programming in Sass",
"main": "./src/lambda.scss",
"scripts": {
"test": "jest",
"lint": "stylelint --fix 'src/*.scss'",
"prepare": "husky"
},
"keywords": [
"sass",
"scss",
"functional programming",
"lambda"
],
"homepage": "https://github.com/p233-studio/lambda-sass#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/p233-studio/lambda-sass.git"
},
"bugs": {
"url": "https://github.com/p233-studio/lambda-sass/issues"
},
"license": "MIT",
"author": "Peiwen Lu",
"devDependencies": {
"@p233/stylelint-config-scss": "^4.1.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"postcss": "^8.4.49",
"prettier": "^3.4.2",
"sass": "^1.83.0",
"sass-true": "^8.1.0",
"stylelint": "^16.12.0",
"stylelint-prettier": "^5.0.2"
},
"jest": {
"testEnvironment": "node"
},
"lint-staged": {
"*.scss": [
"stylelint --fix"
]
},
"files": [
"src"
]
}