-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 958 Bytes
/
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
{
"name": "@anychain/core",
"version": "0.1.1",
"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"
],
"devDependencies": {
"@types/chai": "4.1.2",
"@types/mocha": "5.0.0",
"@types/node": "9.6.0",
"chai": "4.1.2",
"mocha": "5.0.5",
"rimraf": "2.6.2",
"ts-node": "5.0.1",
"tslint": "5.9.1",
"tslint-config-prettier": "1.10.0",
"typescript": "2.7.2"
},
"scripts": {
"build": "rimraf dist && tsc",
"test": "mocha -r ts-node/register src/**/*.test.ts",
"prepublishOnly": "yarn test && yarn build"
}
}