-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
138 lines (138 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
133
134
135
136
137
138
{
"name": "mdl-ext",
"version": "0.0.0-semantically-released",
"description": "Components based on the Google Material Design Lite framework",
"module": "es/index.js",
"main": "lib/mdl-ext.js",
"files": [
"*.md",
"es",
"lib",
"src"
],
"scripts": {
"dev": "webpack --progress --colors --watch --mode=dev",
"stylelint": "stylelint './src/**/*.s?(a|c)ss' --syntax scss",
"eslint": "eslint ./src ./test",
"lint": "npm run stylelint && npm run eslint",
"test": "mocha -w --opts ./mocha.opts './test/**/*.spec.js'",
"test:single": "mocha -w --opts ./mocha.opts",
"test:pattern": "mocha -w --opts ./mocha.opts './test/**/*.spec.js' --grep $pattern",
"test:coverage": "istanbul cover --root ./src ./node_modules/.bin/_mocha -- --opts ./mocha.opts -r .istanbul-mocha.config.js './test/**/*.spec.js'",
"check-coverage": "istanbul check-coverage --statements 75 --branches 75 --functions 75 --lines 75",
"report-coverage": "cat ./coverage/lcov.info | ./node_modules/.bin/codecov",
"clean": "rimraf lib && mkdir lib && rimraf es",
"precommit": "npm run lint && npm run test:coverage && npm run check-coverage",
"commit": "git-cz",
"build-demo": "gulp build-demo",
"build-es": "rimraf es && NODE_ENV=es babel ./src -d es --ignore ./src/demo",
"prebuild": "npm run clean && npm run build-es && webpack",
"build": "webpack --mode=build",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"start": "npm run dev"
},
"config": {
"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.7.6",
"babel-cli": "6.23.0",
"babel-core": "6.23.1",
"babel-eslint": "7.1.1",
"babel-loader": "6.3.2",
"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-object-rest-spread": "6.23.0",
"babel-plugin-transform-runtime": "6.23.0",
"babel-polyfill": "6.23.0",
"babel-preset-es2015": "6.22.0",
"babel-preset-stage-0": "6.22.0",
"babel-register": "6.23.0",
"babel-runtime": "6.23.0",
"chai": "3.5.0",
"chalk": "1.1.3",
"codecov.io": "0.1.6",
"commitizen": "2.9.6",
"css-loader": "0.26.2",
"cz-conventional-changelog": "2.0.0",
"dialog-polyfill": "0.4.7",
"doctrine": "2.0.0",
"eq.js": "1.9.0",
"es6-promise": "4.0.5",
"eslint": "3.16.1",
"eslint-loader": "1.6.3",
"extract-text-webpack-plugin": "1.0.1",
"file-loader": "0.10.1",
"gulp": "3.9.1",
"gulp-git": "2.0.0",
"gulp-posthtml": "2.0.0",
"ignore-styles": "5.0.1",
"istanbul": "1.0.0-alpha.2",
"jsdom": "9.11.0",
"jsdomify": "2.1.0",
"material-design-lite": "1.3.0",
"mocha": "3.2.0",
"mutation-observer": "1.0.2",
"node-sass": "4.5.0",
"null-loader": "0.1.1",
"object-assign": "4.1.1",
"postcss-loader": "1.3.2",
"posthtml-include": "1.1.0",
"require-uncached": "1.0.3",
"resolve-url-loader": "2.0.0",
"rimraf": "2.6.1",
"roboto-fontface": "0.7.0",
"sass-loader": "4.1.1",
"semantic-release": "6.3.5",
"sinon": "1.17.7",
"style-loader": "0.13.2",
"stylelint": "7.9.0",
"stylelint-config-standard": "16.0.0",
"stylelint-webpack-plugin": "0.7.0",
"url-loader": "0.5.8",
"webpack": "1.14.0",
"yargs": "6.6.0"
}
}