forked from finos/openfin-react-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "openfin-react-hooks",
"version": "1.1.1",
"description": "A collection of React Hooks built on top of the Openfin API",
"main": "dist/index.js",
"scripts": {
"compile": "tsc",
"lint": "tslint {**,.}/*.ts{,x}",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ScottLogic/openfin-react-hooks.git"
},
"keywords": [
"openfin",
"react",
"react-hooks"
],
"author": "Scott Logic",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/ScottLogic/openfin-react-hooks/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run compile && npm run lint"
}
},
"homepage": "https://github.com/ScottLogic/openfin-react-hooks#readme",
"devDependencies": {
"@types/openfin": "^41.0.0",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.9.1",
"husky": "^2.3.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
},
"peerDependencies": {
"react": "^16.8.0"
},
"dependencies": {
"openfin-layouts": "^1.0.3",
"react-dom": "^16.10.1"
}
}