-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.23 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
{
"name": "ilp-schemas",
"version": "1.2.0",
"description": "Various JSON schemas for ILP-related protocols",
"keywords": [
"interledger",
"five-bells",
"ilp"
],
"main": "index.js",
"scripts": {
"lint": "eslint .",
"integration": "integration-loader && integration all",
"test": "ajv compile -s schemas/\\*.json -r schemas/\\*.json"
},
"repository": {
"type": "git",
"url": "[email protected]:interledgerjs/ilp-schemas.git"
},
"author": "Interledger Team <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/interledgerjs/ilp-schemas/issues"
},
"homepage": "https://github.com/interledgerjs/ilp-schemas",
"dependencies": {},
"peerDependencies": {},
"devDependencies": {
"ajv-cli": "^2.1.0",
"eslint": "^4.13.1",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^5.2.1",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-standard": "^3.0.1",
"five-bells-integration-test-loader": "^1.4.0"
},
"config": {
"five-bells-integration-test-loader": {
"module": "five-bells-integration-test",
"repo": "interledgerjs/five-bells-integration-test"
}
}
}