-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.33 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": "@metaio/meta-signature-util",
"version": "0.9.2",
"description": "meta-signature-util",
"license": "MIT",
"keywords": [
"signature"
],
"scripts": {
"build": "tsc && npx tsc-alias",
"build:docs": "typedoc --out docs src/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint --fix . --ext .ts",
"clean": "rimraf lib",
"format": "prettier --write \"src/**/*.ts\"",
"test": "npm run build && jest",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"curve25519-js": "^0.0.4",
"niceware": "^2.0.2"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/node": "^16.4.3",
"@typescript-eslint/eslint-plugin": "^5.3.0",
"@typescript-eslint/parser": "^5.3.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"lint-staged": "^11.2.6",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"tsc-alias": "^1.4.1",
"typedoc": "^0.22.10",
"typescript": "^4.4.4"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"author": "Casimir Crystal <[email protected]> (https://github.com/casimir-crystal/)"
}