-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 3.02 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
{
"name": "react-mdl-library",
"author": "Particle4dev Team",
"version": "2.0.0-alpha.25",
"description": "React Components for Material Design Lite",
"main": "./dist/mdl.min.js",
"keywords": [
"react",
"react component",
"material design",
"material design lite"
],
"repository": {
"type": "git",
"url": "https://github.com/university-of-ant-solutions/react-mdl-library.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/university-of-ant-solutions/react-mdl-library/issues"
},
"devDependencies": {
"@storybook/addon-actions": "^3.4.8",
"@storybook/addon-info": "^3.4.8",
"@storybook/addon-knobs": "^3.4.8",
"@storybook/addon-options": "^3.4.8",
"@storybook/react": "^3.4.8",
"autoprefixer": "^8.2.0",
"babel-cli": "^6.26.0",
"babel-loader": "^7.1.4",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-react-require": "^3.0.0",
"babel-plugin-transform-object-assign": "^6.22.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-preset-stage-1": "^6.24.1",
"clean-webpack-plugin": "^0.1.19",
"cross-env": "^5.1.4",
"css-loader": "^0.28.11",
"extract-loader": "^2.0.1",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^1.1.11",
"gh-pages": "^1.1.0",
"highlight.js": "^9.12.0",
"postcss-loader": "^2.1.3",
"react-element-to-jsx-string": "^13.2.0",
"sass-loader": "^6.0.7",
"standard-version": "^4.3.0",
"uglifyjs-webpack-plugin": "^1.2.4",
"webpack": "3.11.0",
"webpack-bundle-analyzer": "^2.11.1",
"webpack-cli": "^2.0.13",
"webpack-merge": "^4.1.2"
},
"peerDependencies": {
"react": "^16.2.0",
"react-dom": "^16.2.0"
},
"dependencies": {
"classnames": "^2.2.5",
"lodash": "^4.17.5",
"material-components-web": "0.33.0",
"react-transition-group": "^2.2.1"
},
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --colors --config webpack.prod.js",
"prepublish23": "npm run build",
"start": "./node_modules/.bin/start-storybook -p 9001 -c .storybook",
"build-storybook": "./node_modules/.bin/build-storybook",
"gh-pages": "npm run build-storybook -- -o _gh-pages && gh-pages -d _gh-pages && rm -rf _gh-pages",
"release": "./node_modules/.bin/standard-version",
"version": "npm run release --commit-all",
"version:patch": "npm run release -- --release-as patch",
"version:minor": "npm run release -- --release-as minor",
"version:major": "npm run release -- --release-as major",
"push": "git push --follow-tags origin master && npm publish",
"deploy": "npm run version && npm run push",
"deploy:patch": "npm run version:patch && npm run push",
"deploy:minor": "npm run version:minor && npm run push",
"deploy:major": "npm run version:major && npm run push",
"preversion": "npm run test && npm run lint && npm run build",
"postpublish": "npm run gh-pages"
},
"browserslist": [
"defaults",
"last 2 versions",
"iOS 8"
]
}