-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
92 lines (92 loc) · 2.9 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
86
87
88
89
90
91
92
{
"name": "mdl-webpack",
"version": "0.0.1",
"description": "Google Material Design Lite with webpack",
"main": "webpack.config.js",
"scripts": {
"dev": "./node_modules/.bin/webpack-dev-server --hot --inline --module-bind --progress --color",
"build": "NODE_ENV=production ./node_modules/.bin/webpack --progress --profile --colors",
"dist": "NODE_ENV=production ./node_modules/.bin/webpack -p",
"lint": "./node_modules/.bin/eslint ./src/js",
"test": "NODE_ENV=test ./node_modules/.bin/mocha -w --opts ./mocha.opts './src/**/*.spec.js'",
"test:coverage": "NODE_ENV=test ./node_modules/.bin/babel-node ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --include ./src/js/**/*.js -- --opts ./mocha.opts -r ./.istanbul-mocha.config.js './src/**/*.spec.js'",
"ci": "npm run lint && npm run test:coverage",
"start": "npm run dev"
},
"dependencies": {
"babel-polyfill": "6.20.0",
"babel-runtime": "6.20.0",
"core-decorators": "0.15.0",
"custom-event": "1.0.1",
"dialog-polyfill": "0.4.5",
"eq.js": "1.9.0",
"es6-promise": "4.0.5",
"lavu-details-polyfill": "0.1.0",
"material-design-lite": "1.3.0",
"mdl-ext": "0.14.0",
"moment": "2.17.1",
"whatwg-fetch": "2.0.1"
},
"devDependencies": {
"autoprefixer": "6.6.1",
"babel-cli": "6.18.0",
"babel-core": "6.21.0",
"babel-eslint": "7.1.1",
"babel-loader": "6.2.10",
"babel-plugin-syntax-decorators": "6.13.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.15.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-0": "6.16.0",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"copy-webpack-plugin": "4.0.1",
"css-loader": "0.26.1",
"eslint": "3.13.1",
"eslint-loader": "1.6.1",
"exports-loader": "^0.6.3",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"html-loader": "0.4.4",
"ignore-styles": "5.0.1",
"imports-loader": "0.7.0",
"istanbul": "^1.0.0-alpha.2",
"jsdom": "9.9.1",
"jsdomify": "2.1.0",
"material-design-iconic-font": "^2.2.0",
"material-design-icons": "3.0.1",
"mocha": "3.2.0",
"modularscale-sass": "2.1.1",
"node-sass": "4.3.0",
"null-loader": "0.1.1",
"postcss-loader": "1.2.2",
"require-uncached": "1.0.3",
"resolve-url-loader": "1.6.1",
"roboto-fontface": "0.6.0",
"sass-loader": "4.1.1",
"sinon": "1.17.7",
"sinon-chai": "^2.8.0",
"style-loader": "0.13.1",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2"
},
"engines": {
"node": ">=5"
},
"keywords": [
"webpack",
"es6",
"es7",
"EcmaScript 2015",
"EcmaScript 2016",
"babel",
"sass",
"mdl",
"material-design-lite"
],
"author": "Leif Olsen",
"homepage": "https://github.com/leifoolsen/mdl-webpack",
"license": "Apache-2.0",
"private": true
}