-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.47 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
{
"name": "@privacyresearch/uprovets",
"version": "1.0.38",
"description": "TypeScript library for the UProve anonymous credential system",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/privacyresearchgroup/UProveTS.git",
"author": "Rolfe Schmidt <rolfe@alumni.princeton.edu>",
"license": "GPL-3.0-only",
"private": false,
"scripts": {
"test": "jest --config jestconfig.json",
"lint": "tslint -c tslint.json -p tsconfig.json -e 'node_modules/**' -e 'typings/**' '**/*.ts?(x)'",
"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 test && yarn run lint",
"preversion": "yarn run lint && yarn test",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags"
},
"devDependencies": {
"@privacyresearch/pr-math": "^0.0.13",
"@types/base64-js": "^1.3.0",
"@types/jest": "^25.1.4",
"@types/lodash": "^4.14.149",
"@types/node": "^13.9.8",
"jest": "^26.6.3",
"prettier": "^2.0.2",
"ts-jest": "^25.3.0",
"tslint": "^6.1.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "^3.8.3"
},
"dependencies": {
"base64-js": "^1.3.1",
"lodash": "^4.17.21",
"node-fetch": "^2.6.1"
},
"files": [
"lib/*.js",
"lib/*.d.ts",
"lib/msrcrypto/**/*",
"lib/testutilities/**/*"
]
}