forked from benmag1/mdl-ext
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
132 lines (132 loc) · 4.26 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "mdl-ext",
"version": "0.0.0-semantically-released",
"description": "Components based on the Google Material Design Lite framework",
"main": "lib/mdl-ext.js",
"scripts": {
"dev": "./node_modules/.bin/webpack --progress --colors --watch --mode=dev",
"stylelint": "./node_modules/.bin/stylelint './src/**/*.s?(a|c)ss' --syntax scss",
"eslint": "./node_modules/.bin/eslint ./src",
"lint": "npm run stylelint && npm run eslint",
"test": "./node_modules/.bin/mocha -w --opts ./mocha.opts './test/**/*.spec.js'",
"test:pattern": "./node_modules/.bin/mocha -w --opts ./mocha.opts './test/**/*.spec.js' --grep $pattern",
"test:coverage": "./node_modules/.bin/babel-node ./node_modules/.bin/istanbul cover --root ./src ./node_modules/.bin/_mocha -- --opts ./mocha.opts -r .istanbul-mocha.config.js './test/**/*.spec.js'",
"check-coverage": "./node_modules/.bin/istanbul check-coverage --statements 95 --branches 75 --functions 95 --lines 95",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"clean": "./node_modules/.bin/rimraf lib && mkdir lib",
"commit": "git-cz",
"prebuild": "npm run clean && ./node_modules/.bin/webpack",
"build": "./node_modules/.bin/webpack -p --mode=build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"build-demo": "./node_modules/.bin/gulp build-demo",
"start": "npm run dev"
},
"config": {
"ghooks": {
"pre-commit": "npm run build && npm run check-coverage"
},
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"czConfig": {
"path": "./node_modules/cz-conventional-changelog"
},
"repository": {
"type": "git",
"url": "https://github.com/leifoolsen/mdl-ext.git"
},
"keywords": [
"JavaScript",
"es6",
"es7",
"EcmaScript 2015",
"EcmaScript 2016",
"css",
"sass",
"webpack",
"element queries",
"responsive design",
"mdl",
"material design",
"material-design-lite",
"mdl components",
"accordion",
"grid",
"lightboard",
"lightbox",
"selectfield",
"material-color-themes",
"menu-button"
],
"author": "Leif Olsen (https://github.com/leifoolsen)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/leifoolsen/mdl-ext/issues"
},
"homepage": "https://github.com/leifoolsen/mdl-ext#readme",
"peerDependencies": {
"material-design-lite": ">= 1.2"
},
"devDependencies": {
"autoprefixer": "6.5.1",
"babel-cli": "6.18.0",
"babel-core": "6.18.0",
"babel-eslint": "7.1.0",
"babel-loader": "6.2.6",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-syntax-decorators": "6.13.0",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-runtime": "6.15.0",
"babel-polyfill": "6.16.0",
"babel-preset-es2015": "6.18.0",
"babel-preset-stage-0": "6.16.0",
"babel-register": "6.18.0",
"babel-runtime": "6.18.0",
"chai": "3.5.0",
"chalk": "1.1.3",
"codecov.io": "0.1.6",
"commitizen": "2.8.6",
"css-loader": "0.25.0",
"cz-conventional-changelog": "1.2.0",
"dialog-polyfill": "0.4.4",
"doctrine": "1.5.0",
"eq.js": "1.9.0",
"es6-promise": "4.0.5",
"eslint": "3.8.1",
"eslint-loader": "1.6.0",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.9.0",
"ghooks": "1.3.2",
"gulp": "3.9.1",
"gulp-git": "1.12.0",
"gulp-posthtml": "1.5.2",
"ignore-styles": "5.0.1",
"istanbul": "1.0.0-alpha.2",
"jsdom": "9.8.3",
"jsdomify": "2.1.0",
"material-design-lite": "1.2.1",
"mocha": "3.1.2",
"mutation-observer": "1.0.2",
"node-sass": "3.10.1",
"null-loader": "0.1.1",
"object-assign": "4.1.0",
"postcss-loader": "1.0.0",
"posthtml-include": "1.1.0",
"require-uncached": "1.0.2",
"resolve-url-loader": "1.6.0",
"rimraf": "2.5.4",
"roboto-fontface": "0.6.0",
"sass-loader": "4.0.2",
"semantic-release": "6.3.1",
"sinon": "1.17.6",
"style-loader": "0.13.1",
"stylelint": "7.5.0",
"stylelint-config-standard": "14.0.0",
"stylelint-webpack-plugin": "0.3.0",
"url-loader": "0.5.7",
"webpack": "1.13.3",
"webpack-dev-server": "1.16.2",
"yargs": "6.3.0"
}
}