-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
107 lines (107 loc) · 3.69 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "@po.et/node",
"version": "1.0.3",
"description": "The Po.et Node allows you to timestamp documents in a decentralized manner. It is built on top of the Bitcoin blockchain and IPFS.",
"bin": {
"poet-node": "dist/babel/src/index.js"
},
"scripts": {
"start": "node dist/babel/src",
"start:blockchain-writer": "node dist/babel/src/BlockchainWriter/index.js",
"start:ethereum-registry-writer": "node dist/babel/src/EthereumRegistryWriter/index.js",
"build": "npm run build-clear && npm run build-ts && npm run build-babel",
"lint": "tslint -p ./tsconfig.with-tests.json",
"lint:fix": "tslint -p ./tsconfig.with-tests.json --fix",
"test": "ts-node -r tsconfig-paths/register --files ./tests/index.ts",
"test:unit": "ts-node -r tsconfig-paths/register --files ./tests/unit/index.ts",
"test:functional": "ts-node -r tsconfig-paths/register --files ./tests/functional/index.ts",
"test:integration": "ts-node -r tsconfig-paths/register --files ./tests/integration/index.ts",
"coverage": "nyc --report-dir ./.coverage npm run test",
"coverage:unit": "nyc --report-dir ./.coverage-unit npm run test:unit",
"coverage:integration": "nyc --report-dir ./.coverage-integration npm run test:integration",
"coverage:functional": "nyc --report-dir ./.coverage-functional npm run test:functional",
"copy-json": "rsync -a --include '*/' --include '*.json' --exclude '*' src/ dist/ts/src",
"build-clear": "rm -rf dist",
"build-ts": "tsc && npm run copy-json",
"build-babel": "cp .babelrc dist/ts && babel dist/ts/ -d dist/babel --copy-files",
"watch-babel": "cp .babelrc dist/ts && babel -w dist/ts/ -d dist/babel --copy-files",
"test-prepare-db": "node dist/babel/test/PrepareDB.js",
"prepublishOnly": "npm run build && npm test",
"semantic-release": "semantic-release",
"create-claim": "ts-node scripts/CreateClaim",
"create-claim-api": "ts-node tests/stress/createClaimAPI"
},
"files": [
"dist/babel/src"
],
"release": {
"verifyConditions": [
"@semantic-release/github"
],
"prepare": [
"@semantic-release/npm"
],
"publish": [
"@semantic-release/github"
],
"npmPublish": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/poetapp/node.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/poetapp/node/issues"
},
"dependencies": {
"@po.et/poet-js": "5.1.17",
"amqplib": "0.5.3",
"bitcoin-core": "2.2.0",
"bs58": "4.0.1",
"form-data": "2.3.3",
"fp-ts": "2.2.0",
"ipfs-http-client": "28.1.0",
"joi": "14.3.0",
"koa": "2.6.2",
"koa-body": "4.0.4",
"koa-cors": "0.0.16",
"koa-helmet": "4.0.0",
"koa-router": "7.4.0",
"luxon": "1.21.2",
"mongodb": "3.1.10",
"node-fetch": "1.7.3",
"pino": "4.17.6",
"protobufjs": "6.8.8",
"ramda": "0.26.1",
"string-to-stream": "1.1.1",
"web3": "1.2.4"
},
"devDependencies": {
"@po.et/tslint-rules": "2.2.0",
"@types/amqplib": "0.5.9",
"@types/form-data": "2.2.1",
"@types/formidable": "1.0.31",
"@types/joi": "14.0.1",
"@types/koa": "2.0.47",
"@types/koa-helmet": "3.1.2",
"@types/koa-router": "7.0.35",
"@types/luxon": "1.21.0",
"@types/mongodb": "3.3.8",
"@types/node-fetch": "1.6.9",
"@types/pino": "4.16.1",
"@types/ramda": "0.26.0",
"@types/sinon": "7.0.0",
"babel-cli": "6.26.0",
"babel-plugin-module-resolver": "3.1.1",
"concurrently": "4.1.0",
"cuid": "2.1.4",
"nyc": "poetapp/nyc#fbc2ed1",
"riteway": "4.0.1",
"semantic-release": "15.13.1",
"sinon": "7.2.2",
"ts-node": "7.0.1",
"tsconfig-paths": "3.7.0",
"typescript": "3.5.3"
}
}