-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.39 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.39 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
49
50
51
52
53
54
55
56
57
58
{
"name": "@nuid/sdk-nodejs",
"version": "0.2.1",
"description": "SDK for interacting with NuID APIs in Node.js",
"files": [
"/dist",
"LICENSE*"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"watch": {
"build": "src/**/*.ts",
"doc": "src/**/*.ts",
"format": "src/**/*.ts"
},
"scripts": {
"build": "tsc --build",
"clean": "tsc --build --clean",
"doc": "typedoc --includeVersion --readme README.md --listInvalidSymbolLinks src",
"format": "prettier-standard --lint --format -- 'src/**/*.ts'",
"test": "mocha --require ts-node/register test/**/*_test.js",
"watch": "npm-watch"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/nuid/sdk-nodejs.git"
},
"keywords": [
"nuid",
"zero-knowledge",
"crypto",
"api",
"http",
"zkp"
],
"author": "NuID, Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/nuid/sdk-nodejs/issues"
},
"homepage": "https://github.com/nuid/sdk-nodejs#readme",
"dependencies": {
"node-fetch": "^2.6.1",
"ramda": "^0.27.1"
},
"devDependencies": {
"@nuid/zk": "^0.1.1",
"@types/mocha": "^8.2.0",
"@types/node-fetch": "^2.5.8",
"@types/ramda": "^0.27.36",
"mocha": "^8.3.0",
"npm-watch": "^0.7.0",
"prettier-standard": "^16.4.1",
"ts-node": "^9.1.1",
"typedoc": "^0.20.19",
"typescript": "^4.1.3"
}
}