-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.42 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
{
"name": "@miracl/client-js",
"version": "8.3.1",
"description": "MIRACL Trust client library",
"main": "./src/client.js",
"exports": {
".": {
"import": "./src/client.js",
"require": "./cjs/client.cjs"
},
"./promise": {
"import": "./src/promise.js",
"require": "./cjs/promise.cjs"
}
},
"type": "module",
"scripts": {
"build": "rm -rf dist && rollup -c rollup.config.js",
"dist": "npm run build",
"test": "mocha",
"cover": "c8 -r text -r html npm run test",
"lint": "eslint .",
"watch": "nodemon --exec 'npm run build' --watch src --watch lib --ext js",
"docs": "documentation build src/* -f md -o reference.md --markdown-toc false --shallow --config documentation.yml"
},
"mocha": {
"recursive": true,
"timeout": 5000,
"require": [
"test/init.js"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/miracl/client-js.git"
},
"keywords": [
"MIRACL",
"authentication",
"MFA"
],
"author": "MIRACL",
"license": "Apache-2.0",
"dependencies": {
"@miracl/crypto-js": "^4.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"c8": "^9.1.0",
"chai": "^5.1.0",
"documentation": "^14.0.3",
"eslint": "^8.57.0",
"mocha": "^10.3.0",
"nodemon": "^3.1.0",
"rollup": "^4.13.0",
"sinon": "^17.0.1"
}
}