-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
55 lines (55 loc) · 1.39 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
50
51
52
53
54
55
{
"name": "sass-module-importer",
"version": "1.4.0",
"main": "lib/index.js",
"jsnext:main": "src/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-module-importer"
},
"bugs": {
"url": "https://github.com/lucasmotta/sass-module-importer/issues"
},
"license": "MIT",
"keywords": [
"sass",
"scss",
"importer",
"module",
"npm",
"node-sass",
"bower"
],
"scripts": {
"build": "rollup -c",
"lint": "eslint src/index.js test.js",
"pretest": "npm run lint && npm run build",
"test": "mocha --compilers js:buble/register",
"prepublish": "npm test",
"preversion": "npm test",
"version": "npm run build",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"buble": "^0.5.6",
"chai": "^3.5.0",
"eslint": "^2.8.0",
"eslint-config-airbnb": "^6.1.0",
"mocha": "^2.4.5",
"node-sass": "^3.4.2",
"rollup": "^0.25.4",
"rollup-plugin-buble": "^0.5.0",
"rollup-plugin-commonjs": "^3.1.0",
"rollup-plugin-json": "^2.0.0",
"rollup-plugin-node-resolve": "^1.5.0"
},
"dependencies": {
"es6-map": "0.1.3",
"glob": "^7.1.1",
"object-assign": "4.0.1",
"resolve": "1.1.7",
"resolve-bower": "0.0.1"
}
}