-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
41 lines (41 loc) · 960 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
{
"name": "metalsmith-sass",
"version": "2.0.0",
"description": "Sass plugin for Metalsmith.",
"main": "lib/index.js",
"scripts": {
"prepare": "install-peers",
"test": "mocha --harmony --reporter spec test/test.js"
},
"files": [
"lib/**/*.js"
],
"repository": {
"type": "git",
"url": "git://github.com/stevenschobert/metalsmith-sass.git"
},
"keywords": [
"metalsmith",
"sass"
],
"author": "Steven Schobert <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/stevenschobert/metalsmith-sass/issues"
},
"homepage": "https://github.com/stevenschobert/metalsmith-sass",
"devDependencies": {
"assert": "^2.0.0",
"assert-dir-equal": "^1.0.1",
"install-peers-cli": "^2.2.0",
"metalsmith": "^2.3.0",
"mocha": "^9.1.3",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"node-sass": ">= 4.13.0"
},
"dependencies": {
"async": "^3.2.2"
}
}