This repository was archived by the owner on Oct 28, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.36 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.36 KB
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": "sass-exception",
"description": "This Sass module provides functions to standardize exception messages and assist with common validation.",
"version": "1.1.0",
"author": "roydukkey",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/roydukkey/sass-module-exception.git"
},
"homepage": "https://github.com/roydukkey/sass-module-exception#readme",
"bugs": {
"url": "https://github.com/roydukkey/sass-module-exception/issues"
},
"keywords": [
"sass",
"scss",
"dart-sass",
"throw",
"error",
"warn"
],
"main": "./index.sass",
"devDependencies": {
"clean-package": "^1.0.1",
"cspell": "^5.6.6",
"fs-extra": "^10.0.0",
"jest": "^27.0.6",
"replace-in-file": "^6.2.0",
"sass": "^1.35.1",
"sass-true": "^6.0.1",
"yarpm": "^1.1.1"
},
"scripts": {
"lint": "cspell --config './.vscode/cSpell.json' --no-progress '**/{.*/**/,.*/**/.,,.}*'",
"pretest": "yarpm run lint",
"test": "jest",
"prepack": "yarpm run test -- --verbose=false && clean-package",
"new:pack": "yarpm pack && clean-package restore",
"new:publish": "yarpm publish && clean-package restore"
},
"clean-package": {
"indent": "\t",
"remove": [
"clean-package",
"jest",
"scripts"
]
},
"jest": {
"testEnvironment": "node",
"verbose": true,
"coverageDirectory": ".jest/coverage",
"cacheDirectory": ".jest/cache"
}
}