-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
125 lines (125 loc) · 3.59 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
{
"name": "react-state-form",
"version": "2.0.2",
"description": "",
"main": "build/react-state-form.js",
"module": "build/react-state-form.js",
"scripts": {
"prod": "webpack -p",
"start": "webpack-dev-server --config webpack.config.babel.js --color --progress --hot --inline --mode development",
"local": "webpack-dev-server --config webpack.config.babel.js --color --progress --hot --inline --mode development",
"prepublishOnly": "rm -rf ./build && npm run prod",
"test": "jest",
"test:watch": "jest --watch --verbose true",
"test:debug": "node --inspect-brk node_modules/.bin/jest --runInBand --verbose true",
"eslint:debug": "node --inspect-brk node_modules/.bin/webpack --runInBand --watch --verbose true --debug-brk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iiison/react-form.git"
},
"keywords": [
"form",
"react",
"forms",
"react-form",
"react-state",
"react-state-form"
],
"author": "bharat soni <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iiison/react-form/issues"
},
"peerDependencies": {
"react": "^15.0.0 || ^16.0.0"
},
"dependencies": {
"@babel/polyfill": "^7.2.5",
"babel-jest": "^23.6.0",
"jest": "^23.6.0"
},
"files": [
"build"
],
"homepage": "https://github.com/iiison/react-form#readme",
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.2.2",
"@babel/plugin-proposal-class-properties": "^7.1.0",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-proposal-export-namespace-from": "^7.2.0",
"@babel/preset-env": "^7.1.5",
"@babel/preset-react": "^7.0.0",
"@babel/register": "^7.0.0",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-loader": "^8.0.0-beta.6",
"babel-minify-webpack-plugin": "^0.3.1",
"babel-plugin-module-resolver": "^3.1.1",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.2",
"chalk": "^2.4.1",
"enzyme": "^3.8.0",
"enzyme-adapter-react-15": "^1.4.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.12.1",
"eslint-config-airbnb": "^17.1.0",
"eslint-import-resolver-webpack": "^0.10.1",
"eslint-loader": "^2.1.1",
"eslint-plugin-import": "^2.15.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.4",
"extract-text-webpack-plugin": "^3.0.2",
"html-webpack-plugin": "^3.2.0",
"install-peers": "^1.0.3",
"jest-fetch-mock": "^2.1.0",
"path": "^0.12.7",
"react": "^15.6.1",
"react-dom": "^15.6.1",
"react-router-dom": "^4.3.1",
"react-test-renderer": "^15.6.2",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10",
"webpack-load-plugins": "^0.1.2"
},
"jest": {
"setupTestFrameworkScriptFile": "<rootDir>/__tests__/setup/setupTests.js",
"testPathIgnorePatterns": [
"<rootDir>/__tests__"
],
"moduleNameMapper": {
"^.*[.](css|CSS)$": "<rootDir>/__tests__/setup/styleMock.js",
"$TESTUTILS(.*)$": "<rootDir>/__tests__/utils"
},
"transform": {
"^.+\\.jsx$": "babel-jest",
"^.+\\.js$": "babel-jest"
},
"globals": {
"env": {
"isProd": false,
"isDev": true,
"command": "start"
}
},
"moduleFileExtensions": [
"js",
"jsx",
"json",
"css"
],
"modulePaths": [
"/src"
],
"moduleDirectories": [
"src",
"node_modules"
],
"setupFiles": [
"./__tests__/setup/setupJest.js"
],
"verbose": true,
"automock": false
}
}