-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
85 lines (85 loc) · 2.14 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": "css-entry-webpack-plugin",
"version": "1.0.0-beta.4",
"author": "Cristian Toma",
"description": "A Webpack plugin that allows CSS files as the entry.",
"main": "lib/index.js",
"files": [
"lib/"
],
"scripts": {
"start": "gulp watch",
"clean": "gulp clean",
"build": "gulp build",
"test": "gulp test",
"test:cover": "gulp test --cover"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tomachristian/css-entry-webpack-plugin.git"
},
"keywords": [
"css",
"style",
"sass",
"scss",
"less",
"stylus",
"styl",
"entry",
"webpack",
"plugin",
"bundle"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/tomachristian/css-entry-webpack-plugin/issues"
},
"homepage": "https://github.com/tomachristian/css-entry-webpack-plugin#readme",
"devDependencies": {
"@types/bluebird-global": "^3.5.0",
"@types/jasmine": "^2.5.46",
"@types/lodash": "^4.14.55",
"@types/node": "^7.0.8",
"babel": "^6.23.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-promise-to-bluebird": "^1.1.1",
"babel-preset-env": "^1.2.2",
"css-loader": "^0.27.3",
"file-loader": "^0.10.1",
"gulp": "github:gulpjs/gulp#4.0",
"gulp-babel": "^6.1.2",
"gulp-clean": "^0.3.2",
"gulp-if": "^2.0.2",
"gulp-jasmine": "^2.4.2",
"gulp-shell": "^0.6.3",
"gulp-sourcemaps": "^2.4.1",
"gulp-typescript": "^3.1.6",
"gulp-util": "^3.0.8",
"html-webpack-plugin": "^2.28.0",
"jasmine": "^2.5.3",
"jasmine-spec-reporter": "^3.2.0",
"jasmine-supertest": "^1.0.0",
"lodash": "^4.17.4",
"merge2": "^1.0.3",
"node-sass": "^4.5.0",
"nyc": "^10.1.2",
"rimraf": "^2.6.1",
"sass-loader": "^6.0.3",
"supertest": "^3.0.0",
"tslint": "^4.5.1",
"typescript": "^2.2.1",
"webpack": "^2.2.1",
"webpack-dev-server": "^2.4.2",
"webpack-merge": "^4.0.0"
},
"dependencies": {
"bluebird": "^3.5.0",
"extract-text-webpack-plugin": "^2.1.0",
"tslib": "^1.6.0",
"webpack": "^2.2.1"
},
"engines": {
"node": ">=4.3.0 <5.0.0 || >=5.10"
}
}