-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
56 lines (56 loc) · 1.13 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
{
"name": "node-sass-alias-importer",
"description": "Node sass importer supporting custom alias for directories or specific files",
"version": "2.0.4",
"keywords": [
"node-sass",
"sass",
"importer",
"path",
"alias",
"aliases",
"folder",
"files",
"directories",
"webpack",
"rollup"
],
"author": "Javier Brea",
"license": "MIT",
"repository": "https://github.com/javierbrea/node-sass-alias-importer",
"files": [
"src"
],
"main": "src/index.js",
"scripts": {
"lint": "eslint src",
"test": "jest",
"test:unit": "npm run test",
"lint-staged": "lint-staged",
"prepare": "husky install"
},
"peerDependencies": {
"node-sass": ">=4.0.0"
},
"peerDependenciesMeta": {
"node-sass": {
"optional": true
}
},
"devDependencies": {
"eslint": "8.54.0",
"eslint-config-prettier": "9.0.0",
"eslint-plugin-prettier": "5.0.1",
"husky": "8.0.3",
"is-ci": "3.0.1",
"jest": "29.7.0",
"lint-staged": "15.1.0",
"prettier": "3.1.0"
},
"lint-staged": {
"src/**/*.js": "eslint"
},
"engines": {
"node": ">=14.0.0"
}
}