-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.47 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
80
81
82
83
84
85
{
"name": "@redsift/redsift-bundler",
"version": "0.8.1",
"description": "Bundle your ES2015/Stylus/CSS application for distribution.",
"bin": {
"redsift-bundler": "./bin/bundle.js",
"redsift-serve": "./bin/serve.js"
},
"scripts": {
"test": "./node_modules/.bin/tape 'test/**/*.test.js'",
"postversion": "git push --tags origin HEAD"
},
"repository": {
"type": "git",
"url": "git@github.com:Redsift/redsift-bundler.git"
},
"keywords": [
"redsift",
"es2015",
"stylus",
"bundler"
],
"author": "Martin Hecher <martin@redsift.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Redsift/redsift-bundler/issues"
},
"homepage": "https://github.com/Redsift/redsift-bundler#readme",
"main": "./index.js",
"dependencies": {
"babel-core": "^6.18.2",
"babel-loader": "^6.2.8",
"babel-plugin-external-helpers": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.19.0",
"babel-plugin-transform-decorators-legacy": "^1.3.4",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.16.0",
"browser-sync": "2.16.0",
"del": "*",
"eslint-plugin-react": "^6.7.1",
"gulp": "^3.9.1",
"gulp-autoprefixer": "*",
"gulp-babel": "*",
"gulp-cleancss": "^0.2.2",
"gulp-concat": "*",
"gulp-notify": "*",
"gulp-plumber": "^1.0.1",
"gulp-postcss": "^6.1.1",
"gulp-rename": "*",
"gulp-replace": "^0.5.4",
"gulp-sourcemaps": "*",
"gulp-stylus": "*",
"gulp-uglify": "*",
"html-loader": "^0.4.4",
"json-loader": "^0.5.4",
"lodash": "^4.12.0",
"merge-stream": "^1.0.0",
"normalize.css": "^4.2.0",
"postcss-assets": "^4.1.0",
"rollup": "^0.36.4",
"rollup-plugin-babel": "^2.6.1",
"rollup-plugin-commonjs": "3.0.1",
"rollup-plugin-eslint": "^3.0.0",
"rollup-plugin-filesize": "^1.0.1",
"rollup-plugin-includepaths": "^0.2.1",
"rollup-plugin-json": "^2.0.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-node-resolve": "^2.0.0",
"rollup-plugin-replace": "^1.1.1",
"rollup-plugin-string": "^2.0.2",
"rollup-plugin-uglify": "^1.0.1",
"webpack-stream": "^3.2.0",
"yargs": "^4.7.1"
},
"devDependencies": {
"@redsift/sift-sdk-web": "^0.7.0",
"@redsift/tape-reel": "^0.1.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-polyfill": "^6.23.0",
"babel-preset-env": "^1.6.0",
"react": "^15.4.1",
"react-dom": "^15.4.1",
"shelljs": "^0.7.5"
}
}