forked from Availity/availity-reactstrap-validation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
147 lines (147 loc) · 4.31 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
139
140
141
142
143
144
145
146
147
{
"name": "availity-reactstrap-validation",
"version": "2.5.0",
"author": "Evan Sharp <[email protected]>",
"description": "Form validation helpers for reactstrap",
"main": "lib/index.js",
"engines": {
"node": ">= 5.0.0",
"npm": "^3.0.0"
},
"scripts": {
"ci": "npm run lint && cross-env BABEL_ENV=test nyc mocha-webpack",
"report-coverage": "coveralls < ./__test__/coverage/lcov.info",
"test:coverage": "cross-env BABEL_ENV=test nyc mocha-webpack && npm run cleanup",
"test": "mocha-webpack && npm run cleanup",
"test:watch": "mocha-webpack --watch && npm run cleanup",
"cleanup": "rimraf .nyc_output .tmp",
"start": "webpack-dev-server --config ./webpack.dev.config.js --watch",
"build:docs": "cross-env WEBPACK_BUILD=production webpack --config ./webpack.dev.config.js --colors",
"build": "cross-env WEBPACK_BUILD=production webpack --progress --colors && webpack --colors",
"prebuild": "babel src --out-dir lib",
"lint": "eslint src",
"create-release": "npm test && sh ./scripts/release",
"publish-release": "npm test && sh ./scripts/publish"
},
"repository": {
"type": "git",
"url": "https://github.com/Availity/availity-reactstrap-validation.git"
},
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib",
"dist"
],
"keywords": [
"forms",
"validation",
"bootstrap",
"react",
"component",
"components",
"react-component",
"availity",
"ui"
],
"contributors": [
"Evan Sharp <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/Availity/availity-reactstrap-validation/issues"
},
"homepage": "https://github.com/Availity/availity-reactstrap-validation",
"dependencies": {
"babel-runtime": "^6.26.0",
"classnames": "^2.2.6",
"lodash": "^4.17.10",
"moment": "^2.22.2",
"prop-types": "^15.6.2"
},
"peerDependencies": {
"react": "^0.14.9 || ^15.3.0 || ^16.0.0",
"react-dom": "^0.14.9 || ^15.3.0 || ^16.0.0",
"reactstrap": ">= 5.0.0-alpha.4"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-core": "^6.26.3",
"babel-eslint": "^7.2.2",
"babel-loader": "^6.2.5",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-class-properties": "^6.18.0",
"babel-plugin-transform-proto-to-assign": "^6.9.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.13.2",
"babel-preset-es2015-loose": "^7.0.0",
"babel-preset-react": "^6.5.0",
"babel-preset-stage-0": "^6.5.0",
"babel-register": "^6.11.6",
"bootstrap": "^4.1.3",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-enzyme": "^0.6.1",
"cheerio": "^0.22.0",
"clean-webpack-plugin": "^0.1.8",
"conventional-changelog-cli": "^1.3.22",
"conventional-recommended-bump": "^1.0.0",
"copy-webpack-plugin": "^3.0.1",
"coveralls": "^3.0.0",
"cross-env": "^5.2.0",
"css-loader": "^0.28.0",
"ejs": "^2.6.1",
"enzyme": "^2.8.2",
"eslint": "^3.3.1",
"eslint-config-availity": "^2.1.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^6.10.3",
"extract-text-webpack-plugin": "^1.0.1",
"history": "^2.0.0",
"jsdom": "^13.1.0",
"json-loader": "^0.5.4",
"lodash.debounce": "^4.0.8",
"mocha": "^5.2.0",
"mocha-webpack": "^0.6.0",
"nyc": "^8.1.0",
"raw-loader": "^0.5.1",
"react": "^15.5.4",
"react-addons-pure-render-mixin": "^15.5.2",
"react-addons-test-utils": "^15.5.1",
"react-dom": "^15.5.4",
"react-helmet": "^5.0.3",
"react-highlight": "^0.9.0",
"react-prism": "3.2.1",
"react-router": "^2.0.1",
"react-test-renderer": "^15.5.4",
"react-transition-group": "^1.1.3",
"reactstrap": "^6.0.0",
"rimraf": "^2.5.4",
"sinon": "^2.1.0",
"sinon-chai": "^2.8.0",
"static-site-generator-webpack-plugin": "^2.0.1",
"style-loader": "^0.16.1",
"webpack": "^1.13.2",
"webpack-dev-server": "^1.14.1"
},
"nyc": {
"include": [
"src/**/*.js"
],
"reporter": [
"lcov",
"html",
"text-summary"
],
"sourceMap": false,
"instrument": false,
"report-dir": "./__test__/coverage"
},
"prettier": {
"printWidth": 120,
"singleQuote": true,
"trailingComma": "none"
}
}