-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.47 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.47 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
{
"name": "react-flow-editor2",
"version": "0.0.1",
"description": "React Flow Editor Component",
"engines": {
"node": ">=8.x"
},
"keywords": [
"react",
"react-component",
"react-flow-editor",
"flow-editor",
"flow"
],
"homepage": "https://github.com/hengkx/react-flow-editor2",
"author": "ycxzhkx@gmail.com",
"repository": {
"type": "git",
"url": "https://github.com/hengkx/react-flow-editor2.git"
},
"bugs": {
"url": "https://github.com/hengkx/react-flow-editor2/issues"
},
"files": [
"lib",
"es",
"dist",
"assets/*.css"
],
"license": "MIT",
"main": "./lib/index",
"module": "./es/index",
"scripts": {
"start": "father doc dev --storybook",
"build": "father doc build --storybook",
"compile": "father build",
"prepublishOnly": "npm run compile && np --no-cleanup --yolo --no-publish",
"lint": "eslint src/ --ext .tsx,.ts",
"test": "father test",
"test-coverage": "father test --coverage",
"now-build": "npm run build"
},
"peerDependencies": {
"react": "^16.8.0"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/react": "^16.9.33",
"@types/react-dom": "^16.9.6",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"enzyme-to-json": "^3.4.4",
"father": "^2.29.2",
"np": "^6.2.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"typescript": "^3.8.3"
},
"dependencies": {
"@babel/runtime": "^7.9.2"
}
}