-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.07 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
{
"name": "@anychain/core",
"version": "0.2.2",
"description": "Blockchain data structure for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": "[email protected]:fgladisch/anychain.git",
"author": "Felix Gladisch <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fgladisch/anychain/issues"
},
"keywords": [
"blockchain",
"crypto",
"peer-to-peer",
"p2p",
"typescript"
],
"scripts": {
"build": "rimraf dist && tsc",
"test": "mocha -r ts-node/register src/**/*.test.ts",
"prepublishOnly": "npm run test && npm run build",
"lint": "eslint src --ext .ts"
},
"devDependencies": {
"@types/chai": "4.3.0",
"@types/mocha": "9.1.0",
"@types/node": "17.0.12",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"chai": "4.3.6",
"eslint-config-prettier": "^8.3.0",
"eslint": "^8.7.0",
"mocha": "9.2.0",
"rimraf": "3.0.2",
"ts-node": "10.4.0",
"typescript": "4.5.5"
}
}