-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
64 lines (64 loc) · 1.39 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
60
61
62
63
64
{
"name": "ontrajs",
"version": "1.0.0",
"description": "A ontraport cli to scaffold graphql wrapper or rest wrapper for ontraport.",
"main": "index.js",
"bin": {
"ontrajs": "./index.js"
},
"directories": {
"lib": "lib"
},
"preferGlobal": true,
"dependencies": {
"chalk": "^2.4.2",
"clear": "^0.1.0",
"clui": "^0.3.6",
"commander": "^2.19.0",
"configstore": "^4.0.0",
"figlet": "^1.2.1",
"graphql-yoga": "^1.16.7",
"inquirer": "^6.2.1",
"jest-coverage-badges": "^1.1.2",
"jshint": "^2.10.1",
"minimist": "^1.2.0",
"node-fetch": "^2.3.0",
"touch": "^3.1.0"
},
"devDependencies": {
"eslint": "^5.13.0",
"jest": "^24.0.0"
},
"jest": {
"coverageReporters": [
"json-summary",
"text",
"lcov"
],
"modulePathIgnorePatterns": [
"coverage"
]
},
"scripts": {
"test": "jest --verbose",
"test:coverage": "npm test -- --coverage",
"test:badges": "npm run test:coverage && jest-coverage-badges",
"lint": "eslint."
},
"repository": {
"type": "git",
"url": "git+https://github.com/dashcraft/OntraJs.git"
},
"keywords": [
"Ontraport",
"Graphql",
"REST",
"CLI"
],
"author": "Daniel Ashcraft",
"license": "MIT",
"bugs": {
"url": "https://github.com/dashcraft/OntraJs/issues"
},
"homepage": "https://github.com/dashcraft/OntraJs#readme"
}