forked from pmowrer/node-sass-json-importer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 886 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
{
"name": "node-sass-json-importer",
"version": "3.2.0",
"description": "Allows importing json in sass files parsed by node-sass.",
"main": "dist/node-sass-json-importer.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Updater/node-sass-json-importer.git"
},
"keywords": [
"sass",
"node-sass",
"importer",
"json"
],
"scripts": {
"test": "mocha --compilers js:babel/register",
"compile": "mkdirp dist && babel -o dist/node-sass-json-importer.js src/index.js",
"prepublish": "npm run compile"
},
"peerDependencies": {
"node-sass": ">=3.5.3"
},
"dependencies": {
"is-there": "^4.0.0",
"json5": "0.5.1",
"lodash": "^3.10.1"
},
"devDependencies": {
"babel": "^5.8.23",
"chai": "^3.2.0",
"mkdirp": "^0.5.1",
"mocha": "^2.3.2",
"node-sass": ">=3.5.3"
}
}