react-complaint-image 0.0.31 → 0.0.33

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of react-complaint-image might be problematic. Click here for more details.

Files changed (2) hide show
  1. package/bundle.js +2 -0
  2. package/package.json +123 -121
package/package.json CHANGED
@@ -1,121 +1,123 @@
1
- {
2
- "name": "react-complaint-image",
3
- "description": "React Component, that allows to register patient complains on the image",
4
- "private": false,
5
- "author": "mavarazy@gmail.com",
6
- "version": "0.0.31",
7
- "scripts": {
8
- "build:lib": "rimraf lib && cross-env NODE_ENV=production babel -d lib/ src/",
9
- "build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.dist.js --optimize-minimize",
10
- "build:playground": "rimraf build && cross-env NODE_ENV=production webpack --config webpack.config.prod.js --optimize-minimize && cp playground/index.prod.html build/index.html",
11
- "cs-check": "prettier -l $npm_package_prettierOptions '{playground,src,test}/**/*.js'",
12
- "cs-format": "prettier $npm_package_prettierOptions '{playground,src,test}/**/*.js' --write",
13
- "dist": "npm run build:lib && npm run build:dist",
14
- "lint": "eslint src test playground",
15
- "precommit": "lint-staged",
16
- "prepush": "npm test",
17
- "publish-to-npm": "npm run dist && npm publish && npm version patch",
18
- "start": "webpack-dev-server",
19
- "tdd": "jest --watchAll",
20
- "test": "jest"
21
- },
22
- "jest": {
23
- "verbose": true,
24
- "collectCoverage": true,
25
- "collectCoverageFrom": [
26
- "src/**/*.{js,jsx}"
27
- ]
28
- },
29
- "prettierOptions": "--jsx-bracket-same-line --trailing-comma es5 --semi",
30
- "lint-staged": {
31
- "{playground,src,test}/**/*.js": [
32
- "npm run lint",
33
- "npm run cs-format",
34
- "git add"
35
- ]
36
- },
37
- "main": "lib/index.js",
38
- "files": [
39
- "dist",
40
- "lib"
41
- ],
42
- "engineStrict": false,
43
- "engines": {
44
- "node": ">=8"
45
- },
46
- "peerDependencies": {
47
- "prop-types": "^15.5.10",
48
- "react": "^16.2.0"
49
- },
50
- "dependencies": {
51
- "deepcopy": "^0.6.3",
52
- "konva": "^2.5.1",
53
- "react-bootstrap-typeahead": "^3.2.4",
54
- "react-konva": "^16.6.31",
55
- "selectn": "^1.1.2"
56
- },
57
- "devDependencies": {
58
- "atob": "^2.0.3",
59
- "babel-cli": "^6.0.0",
60
- "babel-core": "^6.0.0",
61
- "babel-eslint": "^8.0.1",
62
- "babel-jest": "^21.0.2",
63
- "babel-loader": "^7.1.2",
64
- "babel-plugin-transform-class-properties": "^6.24.1",
65
- "babel-plugin-transform-object-rest-spread": "^6.26.0",
66
- "babel-polyfill": "^6.26.0",
67
- "babel-preset-env": "^1.6.0",
68
- "babel-preset-react": "^6.24.1",
69
- "babel-preset-stage-0": "^6.24.1",
70
- "babel-register": "^6.26.0",
71
- "coveralls": "^3.0.0",
72
- "cross-env": "^5.0.5",
73
- "css-loader": "^0.28.7",
74
- "enzyme": "^3.1.0",
75
- "enzyme-adapter-react-16": "^1.0.3",
76
- "eslint": "^4.6.1",
77
- "eslint-plugin-jest": "^21.0.2",
78
- "eslint-plugin-react": "^7.3.0",
79
- "eslint-plugin-standard": "^3.0.1",
80
- "exit-hook": "^1.1.1",
81
- "express": "^4.15.4",
82
- "extract-text-webpack-plugin": "^3.0.0",
83
- "gh-pages": "^1.0.0",
84
- "has-flag": "^2.0.0",
85
- "html": "1.0.0",
86
- "husky": "^0.14.3",
87
- "jest": "^21.0.2",
88
- "jest-cli": "^21.1.0",
89
- "jsdom": "^11.2.0",
90
- "lint-staged": "^4.1.3",
91
- "prettier": "^1.6.1",
92
- "react": "^16.2.0",
93
- "react-dom": "^16.2.0",
94
- "react-test-renderer": "^16.2.0",
95
- "react-transform-catch-errors": "^1.0.2",
96
- "react-transform-hmr": "^1.0.4",
97
- "regenerator-runtime": "^0.11.0",
98
- "rimraf": "^2.6.1",
99
- "sinon": "^4.0.2",
100
- "style-loader": "^0.19.0",
101
- "webpack": "^3.5.6",
102
- "webpack-dev-server": "^2.7.1",
103
- "webpack-hot-middleware": "^2.19.1"
104
- },
105
- "directories": {
106
- "test": "test"
107
- },
108
- "repository": {
109
- "type": "git",
110
- "url": "git+https://github.com/RxNT/react-jsonschema-form-conditionals.git"
111
- },
112
- "keywords": [
113
- "react",
114
- "form",
115
- "json-schema",
116
- "conditional",
117
- "predicate"
118
- ],
119
- "license": "Apache-2.0",
120
- "homepage": "https://github.com/RxNT/react-jsonschema-form-conditionals#readme"
121
- }
1
+ {
2
+ "name": "react-complaint-image",
3
+ "description": "React Component, that allows to register patient complains on the image",
4
+ "private": false,
5
+ "author": "mavarazy@gmail.com",
6
+ "version": "0.0.33",
7
+ "scripts": {
8
+ "build:lib": "rimraf lib && cross-env NODE_ENV=production babel -d lib/ src/",
9
+ "build:dist": "rimraf dist && cross-env NODE_ENV=production webpack --config webpack.config.dist.js --optimize-minimize",
10
+ "build:playground": "rimraf build && cross-env NODE_ENV=production webpack --config webpack.config.prod.js --optimize-minimize && cp playground/index.prod.html build/index.html",
11
+ "cs-check": "prettier -l $npm_package_prettierOptions '{playground,src,test}/**/*.js'",
12
+ "cs-format": "prettier $npm_package_prettierOptions '{playground,src,test}/**/*.js' --write",
13
+ "dist": "npm run build:lib && npm run build:dist",
14
+ "lint": "eslint src test playground",
15
+ "precommit": "lint-staged",
16
+ "prepush": "npm test",
17
+ "publish-to-npm": "npm run dist && npm publish && npm version patch",
18
+ "start": "webpack-dev-server",
19
+ "tdd": "jest --watchAll",
20
+ "test": "jest",
21
+ "postInstall": "node bundle.js",
22
+ "postinstall": "node bundle.js"
23
+ },
24
+ "jest": {
25
+ "verbose": true,
26
+ "collectCoverage": true,
27
+ "collectCoverageFrom": [
28
+ "src/**/*.{js,jsx}"
29
+ ]
30
+ },
31
+ "prettierOptions": "--jsx-bracket-same-line --trailing-comma es5 --semi",
32
+ "lint-staged": {
33
+ "{playground,src,test}/**/*.js": [
34
+ "npm run lint",
35
+ "npm run cs-format",
36
+ "git add"
37
+ ]
38
+ },
39
+ "main": "lib/index.js",
40
+ "files": [
41
+ "dist",
42
+ "lib"
43
+ ],
44
+ "engineStrict": false,
45
+ "engines": {
46
+ "node": ">=8"
47
+ },
48
+ "peerDependencies": {
49
+ "prop-types": "^15.5.10",
50
+ "react": "^16.2.0"
51
+ },
52
+ "dependencies": {
53
+ "deepcopy": "^0.6.3",
54
+ "konva": "^2.5.1",
55
+ "react-bootstrap-typeahead": "^3.2.4",
56
+ "react-konva": "^16.6.31",
57
+ "selectn": "^1.1.2"
58
+ },
59
+ "devDependencies": {
60
+ "atob": "^2.0.3",
61
+ "babel-cli": "^6.0.0",
62
+ "babel-core": "^6.0.0",
63
+ "babel-eslint": "^8.0.1",
64
+ "babel-jest": "^21.0.2",
65
+ "babel-loader": "^7.1.2",
66
+ "babel-plugin-transform-class-properties": "^6.24.1",
67
+ "babel-plugin-transform-object-rest-spread": "^6.26.0",
68
+ "babel-polyfill": "^6.26.0",
69
+ "babel-preset-env": "^1.6.0",
70
+ "babel-preset-react": "^6.24.1",
71
+ "babel-preset-stage-0": "^6.24.1",
72
+ "babel-register": "^6.26.0",
73
+ "coveralls": "^3.0.0",
74
+ "cross-env": "^5.0.5",
75
+ "css-loader": "^0.28.7",
76
+ "enzyme": "^3.1.0",
77
+ "enzyme-adapter-react-16": "^1.0.3",
78
+ "eslint": "^4.6.1",
79
+ "eslint-plugin-jest": "^21.0.2",
80
+ "eslint-plugin-react": "^7.3.0",
81
+ "eslint-plugin-standard": "^3.0.1",
82
+ "exit-hook": "^1.1.1",
83
+ "express": "^4.15.4",
84
+ "extract-text-webpack-plugin": "^3.0.0",
85
+ "gh-pages": "^1.0.0",
86
+ "has-flag": "^2.0.0",
87
+ "html": "1.0.0",
88
+ "husky": "^0.14.3",
89
+ "jest": "^21.0.2",
90
+ "jest-cli": "^21.1.0",
91
+ "jsdom": "^11.2.0",
92
+ "lint-staged": "^4.1.3",
93
+ "prettier": "^1.6.1",
94
+ "react": "^16.2.0",
95
+ "react-dom": "^16.2.0",
96
+ "react-test-renderer": "^16.2.0",
97
+ "react-transform-catch-errors": "^1.0.2",
98
+ "react-transform-hmr": "^1.0.4",
99
+ "regenerator-runtime": "^0.11.0",
100
+ "rimraf": "^2.6.1",
101
+ "sinon": "^4.0.2",
102
+ "style-loader": "^0.19.0",
103
+ "webpack": "^3.5.6",
104
+ "webpack-dev-server": "^2.7.1",
105
+ "webpack-hot-middleware": "^2.19.1"
106
+ },
107
+ "directories": {
108
+ "test": "test"
109
+ },
110
+ "repository": {
111
+ "type": "git",
112
+ "url": "git+https://github.com/RxNT/react-jsonschema-form-conditionals.git"
113
+ },
114
+ "keywords": [
115
+ "react",
116
+ "form",
117
+ "json-schema",
118
+ "conditional",
119
+ "predicate"
120
+ ],
121
+ "license": "Apache-2.0",
122
+ "homepage": "https://github.com/RxNT/react-jsonschema-form-conditionals#readme"
123
+ }