forked from TrendingTechnology/react-shape-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
132 lines (132 loc) · 3.9 KB
/
package.json
File metadata and controls
132 lines (132 loc) · 3.9 KB
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
{
"name": "react-shape-editor",
"description": "Simple shape editor component",
"version": "3.5.3",
"scripts": {
"start": "./start.sh",
"build": "rollup -c",
"build:website": "npm run clean:website && parcel build website/index.html -d build --public-url /react-shape-editor/",
"clean": "rimraf dist/*",
"clean:website": "rimraf build",
"lint": "eslint --ext .js,.jsx,.ts,.tsx src website",
"prettier": "prettier --write \"{src,example/src}/**/*.{js,jsx,ts,tsx,css,md}\"",
"prepublishOnly": "npm run lint && npm run test:once && npm run clean && npm run build",
"test": "jest --watch --notify --notifyMode=change",
"test:once": "jest",
"deploy": "gh-pages -d build -m 'Updates [skip ci]'",
"prettier-check": "npm run prettier -- --check --write=false"
},
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/fritz-c/react-shape-editor.git"
},
"homepage": "https://github.com/fritz-c/react-shape-editor#readme",
"bugs": "https://github.com/fritz-c/react-shape-editor/issues",
"browserslist": [
">0.2%",
"not dead",
"not ie < 11",
"not op_mini all"
],
"jest": {
"setupFilesAfterEnv": [
"./src/testUtils/testFrameworkSetup.ts"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"moduleDirectories": [
"node_modules"
],
"moduleNameMapper": {
"\\.(css|jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -e $HUSKY_GIT_PARAMS",
"pre-push": "npm-run-all -p prettier-check lint"
}
},
"resolutions": {
"@types/react": "^16.9.12",
"@types/react-dom": "^16.9.4"
},
"dependencies": {
"prop-types": "^15.5.7"
},
"peerDependencies": {
"react": "^16.12.0",
"react-dom": "^16.12.0"
},
"devDependencies": {
"@babel/cli": "^7.7.5",
"@babel/core": "^7.7.5",
"@babel/plugin-transform-modules-commonjs": "^7.7.5",
"@babel/plugin-transform-runtime": "^7.7.5",
"@babel/preset-env": "^7.7.5",
"@babel/preset-react": "^7.7.4",
"@babel/preset-typescript": "^7.7.4",
"@commitlint/cli": "^8.2.0",
"@commitlint/config-conventional": "^8.2.0",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.3.2",
"@types/jest": "^24.0.23",
"@types/react": "^16.9.15",
"@types/react-dom": "^16.9.4",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"@welldone-software/why-did-you-render": "^3.3.5",
"autoprefixer": "^9.7.3",
"babel-eslint": "^10.0.3",
"coveralls": "^3.0.8",
"cross-env": "^6.0.0",
"eslint": "^6.7.2",
"eslint-config-airbnb": "^18.0.1",
"eslint-config-prettier": "^6.7.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.17.0",
"eslint-plugin-react-hooks": "^1.7.0",
"gh-pages": "^2.1.1",
"husky": "^3.1.0",
"jest": "^24.9.0",
"jest-react-profiler": "^0.1.3",
"npm-run-all": "^4.1.5",
"parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"react": "^16.9.0",
"react-addons-shallow-compare": "^15.6.2",
"react-dom": "^16.9.0",
"react-hot-loader": "^4.12.18",
"react-test-renderer": "^16.9.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.8",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-postcss": "^2.0.3",
"rollup-plugin-typescript2": "^0.25.3",
"typescript": "^3.7.3"
},
"keywords": [
"react",
"react-component"
]
}