-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 1.4 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/curve25519-typescript",
"version": "0.0.12",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": "https://github.com/privacyresearchgroup/curve25519-typescript",
"author": "Rolfe Schmidt <[email protected]>",
"license": "GPL-3.0-only",
"private": false,
"scripts": {
"test": "jest --config jestconfig.json",
"lint": "eslint -c .eslintrc.js '**/*.ts'",
"format": "prettier '{*.{js?(on),ts?(x),md}, src/__tests__/*.{js?(on),ts?(x),md}, src/*.{js?(on),ts?(x),md}}' --write --list-different --config prettier.config.js",
"prepare": "yarn run build",
"build": "tsc -d --diagnostics --disableSizeLimit",
"diagnose": "tsc --noEmit --diagnostics --incremental false",
"prepublishOnly": "yarn run lint",
"preversion": "yarn run lint && yarn test",
"version": "yarn run format && git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {},
"devDependencies": {
"@types/emscripten": "^1.39.4",
"@types/jest": "^27.0.2",
"@typescript-eslint/eslint-plugin": "^4.32.0",
"@typescript-eslint/parser": "^4.32.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.2.3",
"prettier": "^2.4.1",
"ts-jest": "^27.0.5",
"typescript": "^4.4.3"
},
"files": [
"lib/*.js",
"lib/*.d.ts",
"lib/built/**/*"
]
}