-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
68 lines (68 loc) · 1.81 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
{
"name": "react-adaptivecards",
"version": "0.1.3",
"description": "A react wrapper for microsoft/adaptive-cards",
"main": "dist/index.js",
"scripts": {
"build": "babel src --out-dir dist",
"clean": "rimraf lib dist coverage",
"lint": "eslint --fix src && eslint --fix example",
"prepublish": "npm run styleguide:build",
"styleguide": "styleguidist server",
"styleguide:build": "styleguidist build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gatewayapps/react-adaptivecards.git"
},
"babel": {
"presets": [
"env",
"react",
"stage-0"
]
},
"keywords": [
"react",
"adaptivecards",
"adaptive",
"cards"
],
"author": "Daniel Gary <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gatewayapps/react-adaptivecards/issues"
},
"homepage": "https://github.com/gatewayapps/react-adaptivecards#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-env": "^2.4.1",
"babel-eslint": "^8.2.2",
"babel-loader": "^7.1.2",
"babel-preset-react": "^6.24.1",
"eslint": "^4.18.2",
"eslint-config-standard": "^11.0.0",
"eslint-config-standard-react": "^6.0.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.9.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-react": "^7.7.0",
"eslint-plugin-standard": "^3.0.1",
"pre-commit": "^1.2.2",
"react": "^16.2.0",
"react-dom": "^16.2.0",
"react-styleguidist": "^6.2.7",
"rimraf": "^2.6.2",
"webpack": "^3.11.0",
"webpack-blocks": "^1.0.0-rc.2"
},
"peerDependencies": {
"react": "^15.x || ^16.x"
},
"dependencies": {
"adaptivecards": "^1.0.0",
"prop-types": "^15.6.1"
}
}