-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
76 lines (76 loc) · 1.95 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
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "brightid_sdk",
"version": "1.0.1",
"licence": "MIT",
"author": {
"name": "acolytec3"
},
"main": "dist/index.js",
"description": "A typescript library for simplifying integration of applications with BrightID",
"keywords": [
"typescript",
"brightid"
],
"scripts": {
"changelog": "standard-changelog",
"clean": "rimraf dist",
"docs": "npm run clean && typedoc --mode file --options typedoc.markdown.json",
"lint": "eslint -c ./.eslintrc.json src/**/*.ts --fix",
"prepublishOnly": "npm run clean && tsc -p tsconfig.npm.json",
"size-limit": "npm run clean && tsc -p . && size-limit",
"test": "jest",
"upgrade-interactive": "npm-check --update"
},
"homepage": "https://github.com/acolytec3/brightIdSDK",
"repository": {
"type": "git",
"url": "git+https://github.com/acolytec3/brightIdSDK.git"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"prettier --write",
"git add"
]
},
"size-limit": [
{
"limit": "1 s",
"webpack": false,
"path": "dist/*.js"
}
],
"devDependencies": {
"@size-limit/preset-small-lib": "^4.4.5",
"@size-limit/time": "^4.4.5",
"@types/benchmark": "^1.0.31",
"@types/jest": "^25.2.1",
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"codecov": "^3.6.5",
"eslint": "^6.8.0",
"husky": "^4.2.5",
"jest": "^25.4.0",
"lint-staged": "^10.1.7",
"npm-check": "^5.9.2",
"prettier": "^2.0.5",
"rimraf": "^3.0.2",
"standard-changelog": "^2.0.21",
"ts-jest": "^25.4.0",
"ts-node": "^8.9.1",
"typedoc": "^0.17.6",
"typedoc-plugin-markdown": "^2.2.17",
"typescript": "^3.8.3"
},
"dependencies": {
"axios": "^0.21.0",
"base64-js": "^1.5.1",
"fast-json-stable-stringify": "^2.1.0",
"tweetnacl": "^1.0.3"
}
}