-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
129 lines (129 loc) · 3.91 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
{
"name": "react-formawesome",
"version": "1.0.4",
"description": "React UI lib for forms validation",
"main": "build/index.js",
"typings": "build/src/index.d.ts",
"scripts": {
"test": "./node_modules/.bin/cross-env NODE_ENV=test TS_NODE_PROJECT=tsconfig.json ./node_modules/.bin/nyc mocha -r jsdom-global/register -r ts-node/register -r source-map-support/register tests/bootstrap.ts tests/*.spec.tsx tests/*.spec.ts",
"build": "./node_modules/.bin/cross-env NODE_ENV=production ./node_modules/.bin/webpack --mode production --config=./webpack.config.js",
"coverage": "./node_modules/.bin/nyc report --reporter=text-lcov > coverage.lcov && codecov",
"lint": "./node_modules/.bin/tslint --project .",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"storybook": "start-storybook -p 6006",
"build-storybook": "rm -rf ./docs && build-storybook -o ./docs",
"check-commit": "checkCommit.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/MAKARD/react-formawesome"
},
"keywords": [
"ui",
"react",
"validation",
"class-validator",
"validate",
"form",
"react-formawesome-core"
],
"author": "Makarenko Dmitry",
"license": "MIT",
"bugs": {
"url": "https://github.com/MAKARD/react-formawesome/issues"
},
"homepage": "https://makard.github.io/react-formawesome",
"devDependencies": {
"@babel/core": "^7.1.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-object-rest-spread": "^7.0.0",
"@babel/plugin-transform-modules-commonjs": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "^7.1.0",
"@babel/runtime": "^7.1.2",
"@storybook/addon-actions": "^5.1.8",
"@storybook/addon-links": "^5.1.8",
"@storybook/addon-storysource": "^5.1.8",
"@storybook/addons": "^5.1.8",
"@storybook/react": "^6.5.16",
"@types/chai": "^4.1.5",
"@types/enzyme": "^2.8.12",
"@types/mocha": "^2.2.41",
"@types/node": "^10.11.3",
"@types/prop-types": "^15.5.2",
"@types/react": "^16.0.31",
"@types/react-dom": "^16.0.8",
"@types/sinon": "^2.3.3",
"@types/storybook__react": "^4.0.2",
"autoprefixer": "^9.6.0",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.4",
"chai": "^4.2.0",
"class-validator": "^0.9.1",
"clean-webpack-plugin": "^0.1.19",
"codecov": "^3.2.0",
"cross-env": "^5.0.5",
"css-loader": "^3.0.0",
"cssnano": "^4.1.10",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.0.0",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"jsdom": "16.5.0",
"jsdom-global": "3.0.2",
"mocha": "^5.2.0",
"node-sass": "^7.0.0",
"nyc": "^14.1.1",
"postcss-loader": "^3.0.0",
"pre-commit": "^1.2.2",
"prop-types": "^15.6.2",
"react": "^16.5.2",
"react-dom": "^16.5.2",
"react-formawesome-core": "^1.0.1",
"react-markdown": "^4.0.8",
"react-test-renderer": "^16.8.2",
"request": "^2.88.0",
"sass-loader": "^7.1.0",
"sinon": "^7.2.3",
"source-map": "^0.7.3",
"source-map-loader": "^0.2.4",
"storybook-addon-jsx": "^7.1.2",
"style-loader": "^0.23.1",
"ts-node": "^7.0.1",
"tslint": "5.6.0",
"tslint-react": "^3.2.0",
"typescript": "^3.1.1",
"webpack": "^4.20.2",
"webpack-cli": "^3.1.1",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"react": "^16.5.2",
"react-dom": "^16.5.2",
"prop-types": "^15.6.2",
"react-formawesome-core": "^1.0.1"
},
"nyc": {
"extension": [
".ts",
".tsx"
],
"exclude:": [
"**/*.d.ts",
"webpack.config.js",
"tests"
],
"reporter": [
"clover",
"text-summary"
],
"report-dir": "./tests/output"
},
"pre-commit": [
"lint",
"test",
"check-commit"
],
"dependencies": {}
}