-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 901 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
{
"name": "@finprint/protocol-pact",
"version": "1.0.0",
"author": "Finprint",
"license": "BSD-3-Clause",
"description": "Kadena (Pact) smart contracts for the Finprint protocol.",
"homepage": "https://github.com/finprint/protocol-pact",
"repository": {
"type": "git",
"url": "[email protected]:finprint/protocol-pact.git"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"files": [
"dist/src"
],
"scripts": {
"compile": "tsc",
"compile:watch": "npm run compile -- --watch",
"deploy": "node dist/src/deployFinprint.js",
"genkey": "pact -g",
"prepack": "rm -rf ./dist && npm run compile",
"start": "rm -rf ./log && mkdir log && pact --serve server.conf",
"test": "scripts/run-tests.sh"
},
"dependencies": {
"ts-pact": "0.1.1"
},
"devDependencies": {
"@types/node": "12.12.0",
"typescript": "3.5.1"
}
}