-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.28 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
{
"name": "@privacyresearch/ffpoly-ts",
"version": "0.0.1",
"description": "Solve and interpolate polynomials over finite fields.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/privacyresearchgroup/ffpoly",
"author": "Rolfe Schmidt <[email protected]>",
"license": "GPL-3.0-only",
"scripts": {
"test": "jest --config jestconfig.json --no-cache",
"lint": "eslint -c .eslintrc.js '**/*.ts'",
"format": "prettier '**/{*.{js?(on),ts?(x),md},.*.js?(on)}' --write --list-different --config prettier.config.js",
"prepare": "yarn run build",
"build": "tsc -d",
"prepublishOnly": "yarn run lint",
"preversion": "yarn run lint && yarn test",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [],
"dependencies": {
"jsbi": "^3.2.1",
"typescript": "^4.3.2"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@typescript-eslint/eslint-plugin": "^4.25.0",
"@typescript-eslint/parser": "^4.25.0",
"eslint": "^7.27.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^3.4.0",
"jest": "^27.0.1",
"prettier": "^2.3.0",
"ts-jest": "^27.0.1"
},
"files": [
"lib/*.js",
"lib/*.d.ts"
]
}