This repository was archived by the owner on Aug 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
109 lines (109 loc) · 3.99 KB
/
package.json
File metadata and controls
109 lines (109 loc) · 3.99 KB
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
{
"name": "zrmc",
"version": "0.12.7",
"description": "ZRMC is an ES7 React wrapper for Material Components Web.",
"author": "Mik BRY <mik@zoapp.com>",
"license": "MIT",
"main": "index.js",
"scripts": {
"build:demo": "yarn compile:css && webpack --env=prod && rm dist/compressed.css",
"check": "yarn lint && yarn test",
"clean-dist": "rm -r -f dist && mkdir dist",
"compile": "yarn compile:css && babel src/libs -d dist && cp -f ./package.json ./dist/package.json && cp -f ./LICENSE ./dist/LICENSE && cp -f ./README.md ./dist/README.md",
"compile:css": "yarn clean-dist && cleancss -o dist/compressed.css node_modules/material-components-web/dist/material-components-web.css node_modules/dialog-polyfill/dialog-polyfill.css src/libs/css/app.css",
"compile:dev": "yarn compile:css && webpack --env=dev --progress --profile --colors",
"dev": "yarn compile:dev && yarn start:dev",
"distribute": "yarn willPublish && npm publish ./dist",
"distribute:dev": "yarn compile && cd ./dist && yarn pack",
"lint": "eslint src tests --ext=js --ext=jsx && yarn stylelint",
"publish:demo": "yarn build:demo && gh-pages -d dist/public/",
"start:dev": "webpack-dev-server --env=dev --inline",
"stylelint": "stylelint 'src/libs/css/app.css'",
"stylelint:fix": "stylelint 'src/libs/css/app.css' --fix",
"test": "jest",
"willPublish": "yarn lint && yarn test && yarn compile"
},
"repository": {
"type": "git",
"url": "https://github.com/Zoapp/react-materialcomponents.git"
},
"homepage": "https://github.com/Zoapp/react-materialcomponents",
"bugs": {
"url": "https://github.com/Zoapp/react-materialcomponents/issues"
},
"keywords": [
"React",
"ES7",
"Material components"
],
"engines": {
"node": ">=8.5.0"
},
"dependencies": {
"dialog-polyfill": "^0.4.9",
"prop-types": "15.6.0",
"react": "16.4.2",
"react-dom": "16.4.2"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-jest": "^22.2.2",
"babel-loader": "^7.1.2",
"babel-plugin-module-resolver": "3.0.0",
"babel-plugin-syntax-dynamic-import": "^6.18.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-decorators-legacy": "1.3.4",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-react": "^6.24.1",
"clean-css-cli": "^4.1.10",
"copy-webpack-plugin": "4.6.0",
"cross-env": "^5.1.3",
"css-loader": "0.28.9",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"eslint": "^4.15.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-prettier": "^2.9.0",
"eslint-import-resolver-babel-module": "4.0.0",
"eslint-import-resolver-jest": "^2.0.1",
"eslint-import-resolver-webpack": "0.8.4",
"eslint-plugin-import": "2.8.0",
"eslint-plugin-jest": "^21.13.0",
"eslint-plugin-jsx-a11y": "6.0.3",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-react": "7.11.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "3.0.1",
"gh-pages": "^1.1.0",
"jest": "23.5.0",
"material-components-web": "0.38.0",
"nodemon": "^1.14.11",
"prettier": "1.14.2",
"react-hot-loader": "4.3.4",
"react-test-renderer": "16.4.2",
"style-loader": "0.19.1",
"stylelint": "^9.9.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^2.0.0",
"stylelint-scss": "^3.4.3",
"stylelint-selector-bem-pattern": "^2.0.0",
"webpack": "^4.28.3",
"webpack-cli": "^3.2.0",
"webpack-dev-server": "^3.1.14",
"webpack-merge": "^4.2.1"
},
"jest": {
"moduleNameMapper": {
"demos/(.*)": "<rootDir>/src/demos/$1",
"libs/(.*)": "<rootDir>/src/libs/$1",
"tests/(.*)": "<rootDir>/tests/$1"
},
"testURL": "http://localhost/",
"setupTestFrameworkScriptFile": "<rootDir>/tests/setupTests.js"
}
}