-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
79 lines (79 loc) · 1.93 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "sassify",
"version": "4.0.1",
"description": "Browserify middleware for adding required styles to the page.",
"main": "index.js",
"scripts": {
"test": "browserify -t . -r ./index.js:sassify test/*.js -o test_pack.js && cat test_pack.js | tape-run -b firefox | tap-spec && cat test_pack.js | tape-run -b phantom | tap-spec"
},
"repository": {
"type": "git",
"url": "git://github.com/davidguttman/sassify.git"
},
"keywords": [
"browserify",
"browserify-plugin",
"css",
"middleware"
],
"browser": "./lib/sassify-browser.js",
"author": {
"name": "David Guttman"
},
"contributors": [
{
"name": "Adriaan Callaerts",
"email": "adriaan.callaerts@gmail.com",
"url": "https://github.com/call-a3"
},
{
"name": "Péter Gombos",
"email": "peter@gombos.no",
"url": "http://www.gombos.no/"
},
{
"name": "Jeffrey Ling",
"email": "jeff@bench.co",
"url": "https://github.com/jeffling"
},
{
"name": "Alexander Slansky",
"email": "alexander@slansky.net",
"url": "http://slansky.net/"
},
{
"name": "Alec Perkins",
"email": "mail@alecperkins.me",
"url": "http://alecperkins.net/"
},
{
"name": "Igor Ovsyannikov",
"url": "https://github.com/ggarek"
},
{
"name": "Davide Fiorello",
"email": "davide@codeflyer.com",
"url": "https://github.com/codeflyer"
}
],
"license": "BSD-2-Clause",
"dependencies": {
"browserify-transform-tools": "^1.3.3",
"cssify": "^0.7.0",
"node-sass": "^4.5.3",
"sass-module-importer": "^1.2.1"
},
"devDependencies": {
"browserify": "^9.0.3",
"tap-spec": "^2.2.2",
"tape": "^3.5.0",
"tape-run": "^0.3.0"
},
"bugs": {
"url": "https://github.com/davidguttman/sassify/issues"
},
"homepage": "https://github.com/davidguttman/sassify",
"sassify": {
"auto-inject": true
}
}