forked from interledgerjs/interledgerjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1.1 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
{
"name": "ilp-protocol-ccp",
"version": "1.2.4-alpha.2",
"description": "Implementation of the Connector-to-Connector Protocol (CCP)",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*.js",
"dist/**/*.js.map",
"dist/**/*.d.ts"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf .nyc_output/* dist/* coverage/*",
"build": "tsc -p tsconfig.build.json",
"test": "mocha --require ts-node/register/transpile-only --ui mocha-typescript --require source-map-support/register --watch-extensions ts test/*.ts",
"cover": "nyc --extension .ts --reporter=json --reporter=html --require ts-node/register/transpile-only --ui mocha-typescript --require source-map-support/register mocha test/*.test.ts",
"codecov": "curl -s https://codecov.io/bash | bash -s - -s coverage -F ilp_protocol_ccp"
},
"keywords": [
"ilp",
"routing",
"path-vector"
],
"author": "Interledger Team <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"ilp-packet": "^3.1.4-alpha.2",
"oer-utils": "^5.1.3-alpha.2"
}
}