forked from uladkasach/react-simple-arrows
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.9 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
{
"name": "react-flex-arrows",
"version": "0.2.0",
"description": "react components which make it simple to draw svg arrows in a react app",
"author": "@larissa-n",
"license": "MIT",
"repository": "larissa-n/react-flex-arrows",
"homepage": "https://github.com/larissa-n/react-flex-arrows",
"keywords": [
"react",
"arrow",
"arrows",
"draw",
"svg"
],
"bugs": "https://github.com/larissa-n/react-flex-arrows/issues",
"main": "dist/index.js",
"engines": {
"node": ">=8.0.0"
},
"files": [
"/dist"
],
"scripts": {
"build:clean": "rm -rf ./dist",
"build:ts": "tsc -p ./tsconfig.build.json",
"build": "npm run build:clean && npm run build:ts",
"format": "prettier --parser typescript --write 'src/**/*.ts' --config ./prettier.config.js",
"test:types": "tsc --noEmit",
"test:format": "prettier --parser typescript --check 'src/**/*.ts' --config ./prettier.config.js",
"test:lint": "tslint -c tslint.json -p tsconfig.json",
"test:unit": "jest --forceExit --coverage --verbose",
"test": "npm run test:types && npm run test:lint && npm run test:unit",
"preversion": "npm run test",
"postversion": "git push origin master --tags",
"prepublish": "npm run build"
},
"devDependencies": {
"@testing-library/react": "^9.4.0",
"@types/jest": "^24.0.18",
"@types/uuid": "^3.4.7",
"@types/ws": "^6.0.2",
"husky": "^1.3.1",
"jest": "^26.6.3",
"prettier": "^1.19.1",
"react-dom": "^16.12.0",
"ts-jest": "^24.3.0",
"tslint": "^5.20.1",
"tslint-config-airbnb": "^5.11.0",
"tslint-consistent-codestyle": "^1.13.3",
"tslint-react": "^4.2.0",
"typescript": "^3.8.3"
},
"dependencies": {
"@rehooks/window-size": "^1.0.2",
"async-wait-until": "^1.2.4",
"event-stream-pubsub": "^0.1.0",
"isomorphic-ws": "^4.0.1",
"react": "^16.12.0",
"uuid": "^3.4.0",
"ws": "^7.1.2"
}
}