-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.57 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
{
"name": "github-apiv4",
"version": "3.0.1",
"description": "A collection of Github Graphql APIv4 queries. ",
"main": "build/index.js",
"types": "build/index.d.ts",
"scripts": {
"build": "tsc -p ./",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"dev": "NODE_ENV=development nodemon",
"docs": "rm -rf ./docs && npx typedoc --theme ./node_modules/typedoc-neo-theme/bin/default",
"lint": "npx eslint ./**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioedeveloper/github-apiv4.git"
},
"keywords": [
"Github",
"Graphql",
"APIv4",
"Query",
"Queries",
"API"
],
"author": "David Disu <[email protected]>",
"contributors": [
{
"name": "David Disu",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ioedeveloper/github-apiv4/issues"
},
"homepage": "https://github.com/ioedeveloper/github-apiv4#readme",
"devDependencies": {
"@types/chai": "4.2.7",
"@types/mocha": "^5.2.7",
"@types/node": "^12.0.12",
"@typescript-eslint/eslint-plugin": "^4.17.0",
"@typescript-eslint/parser": "^4.17.0",
"chai": "4.2.0",
"eslint": "^7.22.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"mocha": "^8.3.2",
"nodemon": "^2.0.7",
"ts-node": "^8.2.0",
"typedoc": "^0.20.30",
"typedoc-neo-theme": "git+https://github.com/google/typedoc-neo-theme.git",
"typescript": "^4.2.3"
}
}