-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
36 lines (36 loc) · 1 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
{
"name": "@timesule/shamirs-secret-sharing",
"version": "1.0.0",
"description": "Implementation of Sharmir's Secret Sharing in Typescript",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"license": "MIT",
"author": "timesule",
"scripts": {
"build": "rm -rf dist && tsc",
"lint": "prettier --write \"src/**/*\" \"tests/**/*\" \"examples/**/*\"",
"test": "jest --forceExit --detectOpenHandles",
"test:coverage": "jest --forceExit --detectOpenHandles --coverage",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"files": [
"lib/**/*"
],
"devDependencies": {
"@types/jest": "^29.5.3",
"jest": "^29.6.2",
"jest-html-reporters": "^3.1.4",
"nodemon": "^2.0.7",
"prettier": "^3.0.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.7.0",
"typescript": "^4.3.4"
},
"engines": {
"node": ">=16.0.0"
}
}