-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "sass-glob-importer",
"version": "1.0.1",
"main": "lib/index.js",
"description": "Import Sass files from NPM and Bower Modules",
"author": "Lucas Motta <[email protected]> (lucasmotta.com)",
"repository": {
"type": "git",
"url": "https://github.com/lucasmotta/sass-glob-importer"
},
"bugs": {
"url": "https://github.com/lucasmotta/sass-glob-importer/issues"
},
"license": "MIT",
"keywords": [
"sass",
"scss",
"importer",
"glob",
"wildcard",
"node-sass"
],
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha --compilers js:babel/register",
"compile": "babel -d lib/ src/",
"pretest": "eslint src/index.js test.js",
"preversion": "npm test",
"prepublish": "npm test && npm run compile",
"postpublish": "git push"
},
"devDependencies": {
"babel": "^5.8.3",
"babel-eslint": "^3.1.20",
"chai": "^3.0.0",
"eslint": "^0.24.1",
"eslint-config-mcsaatchi": "^1.0.2",
"mocha": "^2.2.5",
"node-sass": "^3.2.0"
},
"dependencies": {
"es6-map": "^0.1.1",
"is-glob": "^2.0.0",
"map-files": "^0.7.4",
"sort-object": "^2.0.2"
}
}