forked from finos/openfin-react-hooks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.32 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
{
"name": "openfin-react-hooks",
"version": "2.0.0",
"description": "A collection of React Hooks built on top of the Openfin API",
"main": "dist/index.js",
"scripts": {
"compile": "tsc",
"lint": "tslint src/{**,.}/*.ts{,x} demo/{**,.}/ts{,x}",
"test": "echo \"Error: no test specified\" && exit 1",
"license-validation": "npm prune --production && npm install --production && npx node-license-validator . --allow-licenses MIT Apache-2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/finos/openfin-react-hooks.git"
},
"keywords": [
"openfin",
"react",
"react-hooks"
],
"author": "Scott Logic",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/finos/openfin-react-hooks/issues"
},
"husky": {
"hooks": {
"pre-commit": "npm run compile && npm run lint"
}
},
"homepage": "https://github.com/finos/openfin-react-hooks#readme",
"devDependencies": {
"@types/openfin": "^41.0.0",
"@types/react": "^16.8.17",
"@types/react-dom": "^16.9.1",
"dtslint": "^2.0.5",
"husky": "^2.3.0",
"node-license-validator": "^1.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"
}
}