-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
35 lines (35 loc) · 1.11 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
{
"name": "node-sass-import-once",
"version": "1.2.0",
"description": "Custom importer for node-sass that only allows a file to be imported once. Includes additional import bonuses including importing CSS files directly into Sass, automagic Bower imports, the ability to import an `index` file from within a folder name, and the ability to import JSON and YAML files as Sass maps. Inspired by Eyeglass.",
"main": "index.js",
"scripts": {
"test": "cd tests && ../node_modules/.bin/mocha ./"
},
"repository": {
"type": "git",
"url": "https://github.com/at-import/node-sass-import-once.git"
},
"keywords": [
"libsass",
"node-sass",
"import-once",
"importer",
"sass"
],
"author": "Sam Richard <[email protected]>",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/at-import/node-sass-import-once/issues"
},
"homepage": "https://github.com/at-import/node-sass-import-once",
"devDependencies": {
"eslint": "^0.18.0",
"mocha": "^2.2.1",
"node-sass": "^3.0.0-beta.5",
"should": "^5.2.0"
},
"dependencies": {
"js-yaml": "^3.2.7"
}
}