forked from ilap/slip39-js
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "slip39-ts",
"version": "0.2.0",
"description": "The Typescript implementation of the SLIP39 for Shamir's Secret-Sharing for Mnemonic Codes.",
"main": "dist/src/slip39.js",
"scripts": {
"test": "nyc -- mocha --opts mocha.opts 'test/*.ts'",
"check-fmt": "prettier --check 'src/**/*.ts' 'test/**/*.ts'",
"fmt": "prettier --write 'src/**/*.ts' 'test/**/*.ts'",
"lint": "eslint . --ext .ts",
"build": "tsc"
},
"author": "Pal Dorogi \"iLap\" <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ilap/slip39-js.git"
},
"keywords": [
"SLIP39",
"crypto",
"Shamir",
"Shamir's Secret Sharing",
"Shamir's secret-sharing scheme",
"SSS"
],
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.21",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.8.0",
"mocha": "^6.2.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"ts-node": "^8.5.4",
"typescript": "^3.7.4"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"singleQuote": true
},
"nyc": {
"extension": [ ".ts" ]
}
}