-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
42 lines (42 loc) · 1.49 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
{
"name": "react-flow-editor",
"version": "0.6.1",
"description": "React component which enables creating flow editors with ease",
"author": {
"name": "Matthias Lochbrunner",
"email": "[email protected]"
},
"contributors": [],
"license": "MIT",
"bugs": {
"url": "https://github.com/lochbrunner/react-flow-editor/issues"
},
"homepage": "https://github.com/lochbrunner/react-flow-editor",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"style": "dist/_style.scss",
"scripts": {
"compile": "tsc",
"build": "npm run style && npm run compile",
"style": "copyfiles -u 1 ./src/*.scss ./dist/",
"lint": "tslint ./{src}/**/*.{ts,tsx}",
"refresh-all": "npm run refresh-redux && npm run refresh-simple",
"refresh-redux": " rm -rf ./example/redux/node_modules/react-flow-editor/dist && cp -r ./dist ./example/redux/node_modules/react-flow-editor/dist",
"refresh-simple": " rm -rf ./example/simple/node_modules/react-flow-editor/dist && cp -r ./dist ./example/simple/node_modules/react-flow-editor"
},
"dependencies": {
"classnames": "^2.2.6",
"lodash": "^4.17.20",
"react": "^16.13.1"
},
"peerDependencies": {
"react": "^16.13.1"
},
"devDependencies": {
"@types/classnames": "^2.2.10",
"@types/react": "^16.9.49",
"copyfiles": "^2.3.0",
"tslint": "^6.1.3",
"typescript": "^4.0.2"
}
}