-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 963 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
{
"name": "ts-pact",
"version": "0.1.1",
"author": "Finprint",
"license": "BSD-3-Clause",
"description": "TypeScript library for running and deploying Pact code.",
"repository": {
"type": "git",
"url": "https://github.com/finprint/ts-pact.git"
},
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"scripts": {
"compile": "tsc",
"compile:watch": "npm run compile -- --watch",
"genkey": "pact -g",
"install": "[ ! -d dist ] && npm run compile || true",
"repl": "node dist/src/scripts/pactRepl.js",
"start": "node dist/src/scripts/runServer.js"
},
"dependencies": {
"@rauschma/stringio": "^1.4.0",
"axios": "^0.19.0",
"lodash": "4.17.15",
"pact-lang-api": "https://github.com/kadena-io/pact-lang-api.git#c63892c",
"tmp": "0.1.0"
},
"devDependencies": {
"@types/lodash": "4.14.136",
"@types/node": "12.7.2",
"@types/tmp": "0.1.0",
"typescript": "^3.5.1"
}
}