forked from javierbrea/node-sass-alias-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.01 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
{
"name": "node-sass-alias-importer",
"description": "Node sass importer supporting custom alias for directories or specific files",
"version": "1.0.2",
"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.x || 5.x"
},
"devDependencies": {
"eslint": "7.27.0",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-prettier": "3.4.0",
"husky": "6.0.0",
"is-ci": "3.0.0",
"jest": "27.0.1",
"lint-staged": "11.0.0",
"prettier": "2.3.0"
},
"lint-staged": {
"src/**/*.js": "eslint"
}
}