-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 2.18 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
{
"name": "react-konva-portal",
"version": "1.0.10",
"description": "Portal API support for react-konva",
"author": "Nikolay Papakha",
"license": "MIT",
"main": "dist/index.js",
"module": "dist/index.modern.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"repository": "papahigh/react-konva-portal",
"homepage": "https://github.com/papahigh/react-konva-portal",
"source": "src/index.tsx",
"engines": {
"node": ">=10"
},
"scripts": {
"build": "microbundle-crl --no-compress --format modern,cjs",
"start": "microbundle-crl watch --no-compress --format modern,cjs",
"prepare": "run-s build",
"test": "run-s test:unit test:lint test:build",
"test:build": "run-s build",
"test:lint": "cross-env eslint --ext .js,.ts,.jsx,.tsx .",
"test:unit": "cross-env CI=1 react-scripts test --env=jsdom",
"test:update": "cross-env CI=1 react-scripts test --env=jsdom --updateSnapshot",
"test:watch": "react-scripts test --env=jsdom"
},
"peerDependencies": {
"konva": "^7.0.0",
"react": "^16.0.0",
"react-konva": "^16.13.0-0"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.157",
"@types/node": "^12.12.38",
"@types/react": "^16.9.27",
"@types/react-dom": "^16.9.7",
"@typescript-eslint/eslint-plugin": "^3.6.1",
"@typescript-eslint/parser": "^3.6.1",
"babel-eslint": "^10.0.3",
"canvas": "^2.6.1",
"cross-env": "^7.0.2",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsx-a11y": "^6.3.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.20.0",
"eslint-plugin-react-hooks": "^4.0.4",
"jest-canvas-mock": "^2.2.0",
"konva": "^7.0.3",
"microbundle-crl": "^0.13.10",
"npm-run-all": "^4.1.5",
"prettier": "^2.0.4",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"react-konva": "^16.13.0-3",
"react-scripts": "^3.4.1",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
},
"files": [
"dist"
]
}