forked from cody-greene/scssify
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "scssify",
"version": "0.3.5",
"description": "Sass browserify transformer",
"repository": "chrishoage/scssify",
"main": "./lib/index.js",
"browser": "./lib/browser.js",
"scripts": {
"prepublish": "npm run build && npm test",
"build": "./node_modules/.bin/gulp",
"dev": "./node_modules/.bin/gulp build watch",
"test": "./node_modules/.bin/gulp test"
},
"keywords": [
"browserify",
"sass",
"scss",
"browserify transform"
],
"author": "Chris Hoage",
"license": "MIT",
"devDependencies": {
"autoprefixer": "^5.2.0",
"babel-eslint": "^4.0.5",
"browserify": "^11.0.1",
"event-stream": "^3.3.1",
"gulp": "^3.8.11",
"gulp-babel": "^5.1.0",
"gulp-changed": "^1.2.1",
"gulp-eslint": "^1.0.0",
"phantomjs": "^1.9.16",
"tap-spec": "^4.0.0",
"tape": "^4.0.0",
"tape-run": "^1.0.0"
},
"dependencies": {
"browserify-transform-tools": "~1.4.2",
"lodash": "~3.10.1",
"node-sass": "^3.3.3",
"postcss": "~4.1.11",
"resolve": "^1.1.6"
}
}