-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.83 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
57
58
59
60
61
62
63
64
65
66
{
"name": "sass-fairy",
"private": true,
"workspaces": [
"packages/*"
],
"author": {
"name": "roydukkey",
"email": "contact@changelog.me",
"url": "http://changelog.me"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/roydukkey/sass-fairy.git",
"branch": "master"
},
"homepage": "https://github.com/roydukkey/sass-fairy#readme",
"bugs": {
"url": "https://github.com/roydukkey/sass-fairy/issues"
},
"keywords": [
"sass",
"scss",
"dart-sass"
],
"files": [
"/src/**/*.s{a,c}ss",
"/CHANGELOG.md",
"/LICENSE",
"/*.s{a,c}ss",
"/README.md"
],
"devDependencies": {
"clean-package": "^2.1.1",
"cross-env": "^7.0.3",
"cspell": "^5.19.3",
"fs-extra": "^10.0.1",
"jest": "^28.1.0",
"jest-environment-node-single-context": "^28.0.0",
"npm-run-all": "^4.1.5",
"replace-in-file": "^6.3.2",
"sass": "^1.51.0",
"sass-true": "^7.0.0-beta.0"
},
"engines": {
"npm": "please-use-yarn",
"yarn": ">= 1.22.0"
},
"scripts": {
"lint": "yarn lint:spelling",
"lint:spelling": "cspell --config './.vscode/cSpell.json' --no-progress '**/{.*/**/,.*/**/.,,.}*'",
"pretest": "yarn lint:spelling",
"test": "jest",
"bundle:clean-package": "clean-package ./packages/$BUILD/package.json ./packages/$BUILD/package.backup",
"bundle:clean-package:restore": "clean-package restore ./packages/$BUILD/package.json ./packages/$BUILD/package.backup",
"package": "yarn bundle:clean-package && yarn workspace @$npm_package_name/$BUILD pack && yarn bundle:clean-package:restore",
"publish-package": "run-s test bundle:clean-package && yarn workspace @$npm_package_name/$BUILD publish && yarn bundle:clean-package:restore"
},
"jest": {
"testEnvironment": "jest-environment-node-single-context",
"verbose": true,
"coverageDirectory": ".jest/coverage",
"cacheDirectory": ".jest/cache"
}
}