-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.05 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 2.05 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "merkla",
"version": "1.1.0",
"description": "A production-ready Merkle tree implementation in JavaScript",
"main": "dist/merkla.js",
"types": "dist/merkla.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc --project config/tsconfig.json",
"clean": "rimraf dist",
"dev": "tsc --project config/tsconfig.json --watch",
"test": "jest --config config/jest.config.js",
"test:watch": "jest --config config/jest.config.js --watch",
"test:coverage": "jest --config config/jest.config.js --coverage",
"lint": "eslint . --ext .ts --config config/.eslintrc.json",
"lint:fix": "eslint . --ext .ts --fix --config config/.eslintrc.json",
"format": "prettier --write \"**/*.{ts,js,json,md}\" --config config/.prettierrc",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"postinstall": "husky install",
"commitlint": "commitlint --edit config/commitlint.config.js",
"docs": "typedoc --options config/typedoc.json",
"docs:watch": "typedoc --options config/typedoc.json --watch",
"docs:serve": "npx serve docs"
},
"keywords": [
"merkle",
"merkle-tree",
"hash",
"cryptography",
"proof",
"verification"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.0.0",
"@commitlint/config-conventional": "^17.0.0",
"@types/jest": "^29.5.14",
"@types/node": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^8.0.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^8.0.0",
"jest": "^29.0.0",
"prettier": "^2.0.0",
"rimraf": "^3.0.0",
"ts-jest": "^29.3.4",
"typedoc": "^0.24.0",
"typescript": "^4.0.0"
}
}