forked from pmowrer/node-sass-json-importer
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 890 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
{
"name": "@onenexus/synergy-sass-importer",
"version": "1.0.0-beta.9",
"description": "Import JavaScript/JSON files into Sass",
"main": "dist/synergy-sass-importer.js",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/One-Nexus/synergy-sass-importer.git"
},
"keywords": [
"synergy",
"sass",
"node-sass",
"importer",
"javascript",
"json"
],
"peerDependencies": {
"node-sass": ">=3.5.3"
},
"dependencies": {
"deep-extend": "^0.6.0",
"is-there": "^4.0.0",
"json5": "^1.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"babel": "^5.8.23",
"chai": "^3.2.0",
"mocha": "^2.3.2",
"node-sass": "^4.13.1"
},
"scripts": {
"test": "mocha --compilers js:babel/register",
"build": "npm test && mkdirp dist && babel -o dist/synergy-sass-importer.js src/index.js"
}
}