This repository was archived by the owner on May 26, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.43 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.43 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
{
"name": "cattlechainclient",
"version": "0.0.1",
"description": "Fiware",
"engines": {
"node": "10.x"
},
"scripts": {
"postinstall": "rm -rf dist && mkdir dist && npx babel src --out-dir dist",
"start": "cd dist && node server.js",
"dev": "npm run postinstall && npm start",
"watch": "babel-watch src/server.js",
"test": "npm run postinstall && mocha --timeout 10000 --exit",
"build": "npm run postinstall"
},
"repository": {
"type": "git",
"url": "git+"
},
"keywords": [
"npm",
"node",
"javascript",
"sawtooth",
"blockchain",
"fiware"
],
"author": "Har Preet Singh <harpreet.singh@fiware.org>",
"license": "MIT",
"bugs": {
"url": "https://github.com/CattleChain/Transaction_Processor_Client/issues"
},
"homepage": "https://github.com/CattleChain/Transaction_Processor_Client",
"dependencies": {
"bcrypt": "^3.0.7",
"body-parser": "^1.18.3",
"cattlechain_protos": "0.0.7",
"cbor": "^5.0.2",
"chalk": "^2.4.1",
"compression": "^1.7.3",
"cors": "^2.8.4",
"crypto": "^1.0.1",
"ejs": "^2.7.4",
"express": "^4.16.3",
"http-status-codes": "^1.4.0",
"mosca": "^2.8.3",
"pg": "^8.3.2",
"pg-hstore": "^2.3.3",
"request": "^2.88.2",
"sawtooth-sdk": "^1.0.5",
"sequelize": "^6.3.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-preset-env": "^1.7.0",
"babel-watch": "^2.0.7",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"mocha": "^6.2.2"
}
}