-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.49 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.49 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
{
"name": "@hypernetlabs/hypernet-id-corporate-integration",
"version": "0.0.4",
"description": "Corporate integration package for Hypernet.ID.",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/GoHypernet/Hypernet.ID-Public.git"
},
"bugs": {
"url": "https://github.com/GoHypernet/Hypernet.ID-Public/issues"
},
"homepage": "https://github.com/GoHypernet/Hypernet.ID-Public/tree/master/packages/core#readme",
"author": "Onur Kenis <onur@hypernetlabs.io>",
"keywords": [
"Hypernet Labs",
"Hypernet.ID"
],
"main": "lib/index.js",
"files": [
"lib",
"!lib/test",
"!lib/tsconfig.tsbuildinfo"
],
"scripts": {
"alias": "tsc-alias",
"build": "yarn clean && yarn compile",
"clean": "rimraf dist tsconfig.tsbuildinfo",
"compile": "tsc --build && cd ../.. && yarn alias",
"format": "eslint --fix 'src/**/*.ts' && yarn format:pkg",
"format:pkg": "format-package -w",
"prepare": "yarn build",
"prepublishOnly": "yarn test && yarn format",
"test": "yarn test:ci",
"test:ci": "jest --runInBand --coverage --passWithNoTests",
"test:watch": "jest --watch --color --detectOpenHandles",
"preversion": "yarn format",
"version": "yarn format && git add -A src",
"postversion": "git push && git push --tags"
},
"types": "lib/index.d.ts",
"dependencies": {
"@hypernetlabs/objects": "^0.3.20",
"@hypernetlabs/utils": "^0.5.4",
"jwt-decode": "^3.1.2",
"neverthrow": "^4.3.1"
}
}