This repository has been archived by the owner on Dec 2, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "backpack-node-sass",
"version": "1.1.1",
"description": "Parallelised `node-sass` with Backpack support",
"repository": {
"type": "git",
"url": "git+https://github.com/Skyscanner/backpack-node-sass.git"
},
"keywords": [
"backpack",
"node-sass",
"parallel",
"concurrency",
"sass",
"fast",
"parallelised"
],
"author": "Matthew Davidson <matthew.davidson@skyscanner.net>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Skyscanner/backpack-node-sass/issues"
},
"homepage": "https://github.com/Skyscanner/backpack-node-sass#readme",
"main": "index.js",
"bin": {
"backpack-node-sass": "./cli.js"
},
"files": [
"index.js",
"cli.js",
"watcher.js",
"importer.js"
],
"engines": {
"node": "^18.0.0",
"npm": "^9.0.0 || ^10.2.5"
},
"scripts": {
"test:lint": "npm run lint",
"test:verify:fail": "(cd ./test/fail && ./verify.sh)",
"test:verify:pass": "(cd ./test/pass && ./verify.sh)",
"test:verify": "npm run test:verify:pass && npm run test:verify:fail",
"test": "npm run lint && npm run test:verify",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prettier": "prettier --config .prettierrc --write \"**/*.{js,jsx}\""
},
"dependencies": {
"chokidar": "^3.5.3",
"fast-glob": "^3.3.1",
"find-parent-dir": "^0.3.1",
"lodash": "^4.17.21",
"node-sass": "^9.0.0",
"ora": "^5.4.1",
"yargs": "^17.7.2"
},
"devDependencies": {
"@skyscanner/eslint-config-skyscanner": "^16.3.0"
}
}