This repository has been archived by the owner on Dec 13, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
59 lines (59 loc) · 1.85 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
{
"name": "@counterfactual/node",
"version": "0.3.6",
"main": "dist/index.js",
"iife": "dist/index.iife.js",
"types": "dist/src/index.d.ts",
"license": "MIT",
"engines": {
"yarn": ">=1.17.3",
"node": "^10 || ^12"
},
"scripts": {
"build": "yarn build:ts && yarn build:rollup",
"build:ts": "tsc -b .",
"build:rollup": "rollup -c",
"build:watch": "tsc -b . && rollup -c -w",
"test": "jest --setupFiles dotenv-extended/config --runInBand --bail --forceExit",
"test:coverage": "jest --runInBand --detectOpenHandles --bail --coverage",
"lint:fix": "tslint -c tslint.json -p . --fix",
"lint": "tslint -c tslint.json -p ."
},
"devDependencies": {
"@babel/plugin-proposal-object-rest-spread": "7.6.2",
"@counterfactual/apps": "0.1.14",
"@counterfactual/firebase-server": "0.0.5",
"@counterfactual/local-ganache-server": "0.0.10",
"@types/chai": "4.2.4",
"@types/dotenv-safe": "5.0.4",
"ganache-core": "2.8.0",
"jest": "24.8.0",
"jest-cli": "24.8.0",
"jest-dot-reporter": "1.0.12",
"rollup": "1.26.0",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-json": "4.0.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-typescript2": "0.24.3",
"truffle": "5.0.42",
"ts-jest": "24.0.2",
"ts-mockito": "2.5.0",
"tslint": "5.20.0",
"typescript": "3.5.3"
},
"dependencies": {
"@counterfactual/cf-adjudicator-contracts": "0.0.10",
"@counterfactual/cf-funding-protocol-contracts": "0.0.13",
"@counterfactual/cf.js": "0.2.7",
"@counterfactual/firebase-client": "0.0.7",
"@counterfactual/types": "0.0.45",
"ethers": "4.0.38",
"eventemitter3": "^4.0.0",
"loglevel": "^1.6.1",
"p-queue": "^5.0.0",
"rpc-server": "0.0.1",
"typescript-memoize": "^1.0.0-alpha.3",
"uuid": "^3.3.2"
}
}