-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 949 Bytes
/
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
{
"name": "node-sass-tilde-importer",
"version": "2.0.0-alpha.1",
"description": "A node-sass custom importer which turns ~ into absolute paths to the nearest parent node_modules directory.",
"repository": "matthewdavidson/node-sass-tilde-importer",
"main": "index.js",
"scripts": {
"test": "jest --coverage"
},
"files": [
"index.js"
],
"keywords": [
"node-sass",
"scss",
"sass",
"tilde",
"webpack",
"sass-loader",
"node_modules"
],
"author": "Matthew Davidson <matthew.davidson@skyscanner.net>",
"license": "Apache-2.0",
"dependencies": {
"find-parent-dir": "^0.3.0"
},
"devDependencies": {
"jest": "^24.1.0"
},
"jest": {
"verbose": true,
"testRegex": ".+\\.test.js$",
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"statements": 75,
"branches": 75,
"functions": 75,
"lines": 75
}
}
}
}