-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.06 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
{
"name": "dynql",
"version": "0.3.0",
"main": "dist/index.js",
"license": "MIT",
"private": false,
"description": "A library to dynamically generate graphql-queries",
"keywords": [
"graphql",
"dynamic",
"fragments"
],
"homepage": "https://github.com/deckdom/dynql",
"author": {
"name": "Dominik Decker",
"email": "dominik.decker97@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/deckdom/dynql"
},
"bugs": {
"url": "https://github.com/deckdom/dynql/issues"
},
"scripts": {
"build": "tsc",
"test": "mocha ./test/tests.js",
"test:coverage": "nyc --reporter=lcov --reporter=text mocha ./test/tests.js"
},
"dependencies": {},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.2",
"chai": "^4.2.0",
"eslint": "^7.6.0",
"mocha": "^8.1.1",
"nyc": "^15.1.0",
"ts-node": "^9.1.1",
"tslib": "^2.0.1",
"typescript": "^3.9.7"
},
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md",
"package.json"
]
}