-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 984 Bytes
/
package.json
File metadata and controls
49 lines (49 loc) · 984 Bytes
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
{
"name": "hapi-sass",
"version": "4.0.0",
"description": "A Hapi.js plugin for compiling and serving Sass stylesheets",
"main": "index.js",
"scripts": {
"test": "mocha --ui bdd"
},
"author": {
"name": "Matt Darnall",
"email": "mdarnall@gmail.com",
"url": "http://mdarnall.com"
},
"repository": {
"type": "git",
"url": "http://github.com/mdarnall/hapi-sass.git"
},
"bugs": {
"url": "http://github.com/mdarnall/hapi-sass/issues"
},
"keywords": [
"hapi",
"hapijs",
"sass",
"node-sass"
],
"engines": {
"node": ">=4.0.0"
},
"license": "MIT",
"peerDependencies": {
"hapi": ">=17.0.0",
"inert": "^5.1.0"
},
"dependencies": {
"boom": "^7.2.0",
"hoek": "^5.0.4",
"mkdirp": "^0.3.5",
"node-sass": "^4.5.3"
},
"devDependencies": {
"chai": "^3.2.0",
"hapi": "^17.6.0",
"inert": "^5.1.0",
"mocha": "^1.17.1",
"prettier": "^1.14.3",
"sinon": "^1.9.0"
}
}