forked from sass/node-sass
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 1.76 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
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "node-sass",
"version": "9.0.0",
"libsass": "3.5.5",
"description": "Wrapper around libsass",
"license": "MIT",
"bugs": "https://github.com/sass/node-sass/issues",
"homepage": "https://github.com/sass/node-sass",
"repository": {
"type": "git",
"url": "https://github.com/sass/node-sass"
},
"author": {
"name": "Andrew Nesbitt",
"email": "andrewnez@gmail.com",
"url": "http://andrew.github.com"
},
"engines": {
"node": ">=16"
},
"main": "lib/index.js",
"nodeSassConfig": {
"binarySite": "https://github.com/sass/node-sass/releases/download"
},
"bin": {
"node-sass": "bin/node-sass"
},
"gypfile": true,
"scripts": {
"coverage": "nyc npm run test",
"install": "node scripts/install.js",
"postinstall": "node scripts/build.js",
"lint": "eslint bin/node-sass lib scripts test",
"test": "mocha test/{*,**/**}.js",
"build": "node scripts/build.js --force",
"prepublishOnly ": "scripts/prepublish.js"
},
"files": [
"bin",
"binding.gyp",
"lib",
"scripts",
"src",
"test",
"vendor"
],
"keywords": [
"css",
"libsass",
"preprocessor",
"sass",
"scss",
"style"
],
"dependencies": {
"async-foreach": "^0.1.3",
"chalk": "^4.1.2",
"cross-spawn": "^7.0.3",
"gaze": "^1.0.0",
"get-stdin": "^4.0.1",
"glob": "^7.0.3",
"lodash": "^4.17.15",
"make-fetch-happen": "^10.0.4",
"meow": "^9.0.0",
"nan": "^2.17.0",
"node-gyp": "^10.0.1",
"sass-graph": "^4.0.1",
"stdout-stream": "^1.4.0",
"true-case-path": "^2.2.1"
},
"devDependencies": {
"eslint": "^8.0.0",
"fs-extra": "^10.0.0",
"mocha": "^9.0.1",
"nyc": "^15.1.0",
"rimraf": "^3.0.2",
"unique-temp-dir": "^1.0.0"
}
}