forked from tleunen/react-mdl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
121 lines (121 loc) · 3.75 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
{
"name": "react-mdl",
"version": "1.11.0",
"description": "React Components for Material Design Lite",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"repository": "react-mdl/react-mdl",
"keywords": [
"react",
"react-component",
"mdl",
"material-design",
"badge",
"button",
"card",
"checkbox",
"data-table",
"fab-button",
"icon",
"icon-button",
"icon-toggle",
"radio",
"radio-group",
"switch",
"textfield",
"progress",
"progress-bar",
"spinner",
"slider",
"tooltip",
"menu",
"dropdown",
"Layout",
"Drawer",
"Grid",
"Tabs"
],
"author": {
"name": "Tommy Leunen",
"email": "[email protected]",
"url": "http://tommyleunen.com/"
},
"license": "MIT",
"dependencies": {
"clamp": "^1.0.1",
"classnames": "^2.2.3",
"lodash.isequal": "^4.4.0",
"prop-types": "^15.5.0"
},
"devDependencies": {
"add-stream": "^1.0.0",
"babel-cli": "^6.11.4",
"babel-core": "^6.13.2",
"babel-loader": "^6.2.5",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-transform-object-rest-spread": "^6.6.5",
"babel-polyfill": "^6.13.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-react": "^6.5.0",
"chai": "^3.5.0",
"chai-enzyme": "^0.6.1",
"conventional-changelog": "^1.1.0",
"cross-env": "^4.0.0",
"enzyme": "^2.4.1",
"eslint": "^2.7.0",
"eslint-config-airbnb": "^9.0.1",
"eslint-plugin-import": "^1.13.0",
"eslint-plugin-jsx-a11y": "^1.5.3",
"eslint-plugin-react": "5.1.1",
"expect": "^1.16.0",
"gatsby": "^0.12.43",
"gh-pages": "^0.12.0",
"isparta": "^4.0.0",
"isparta-loader": "^2.0.0",
"json-loader": "^0.5.4",
"karma": "^1.2.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^1.0.1",
"karma-cli": "^1.0.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.0.1",
"karma-mocha-reporter": "^2.1.0",
"karma-sinon": "^1.0.5",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.0.2",
"react": "^15.6.2",
"react-addons-test-utils": "^15.6.2",
"react-dom": "^15.6.2",
"react-router": "^2.6.1",
"rimraf": "^2.5.4",
"sinon": "^2.1.0",
"standard-version": "^4.0.0",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.14.1"
},
"peerDependencies": {
"react": "0.14.x || ^15.0.0-rc",
"react-dom": "0.14.x || ^15.0.0-rc"
},
"scripts": {
"clean": "rimraf coverage lib out",
"react:clean": "rimraf node_modules/react node_modules/react-dom node_modules/react-addons-test-utils",
"react:15": "npm run react:clean && npm i react@15 react-dom@15 react-addons-test-utils@15",
"test:react:14": "npm run react:14 && npm run test:suite",
"test:react:15": "npm run react:15 && npm run test:suite",
"test:suite": "karma start --single-run",
"pretest": "npm run lint",
"test": "npm run test:react:14 && npm run test:react:15",
"test:watch": "karma start --auto-watch",
"lint": "eslint src scripts",
"compile": "rimraf lib && babel src --ignore __tests__ --out-dir lib",
"serve-docs": "cd docs && ./node_modules/.bin/gatsby develop",
"build-docs": "cd docs && npm i && ./node_modules/.bin/gatsby build --prefix-links",
"build-umd": "cross-env NODE_ENV=production webpack src/index.js out/ReactMDL.js --output-library ReactMDL --output-library-target umd",
"build-min": "cross-env NODE_ENV=production webpack -p src/index.js out/ReactMDL.min.js --output-library ReactMDL --output-library-target umd",
"release": "./scripts/release.sh",
"release-docs": "gh-pages -d docs/public/ -m 'Updates v'$npm_package_version"
}
}