-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.28 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
{
"name": "dataloader-factory",
"version": "4.6.2",
"description": "DataLoader classes to make it easier to write complex graphql resolvers.",
"exports": {
"types": "./dist-esm/index.d.ts",
"require": "./dist/index.js",
"import": "./dist-esm/index.js"
},
"types": "./dist-esm/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "rm -rf dist && tsc && mv dist/index.d.ts dist-esm/index.d.ts",
"test": "mocha -r ts-node/register test/**/*.ts",
"lint": "eslint src/**/*.ts test/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/txstate-etc/dataloader-factory.git"
},
"keywords": [],
"author": "Nick Wing",
"license": "MIT",
"bugs": {
"url": "https://github.com/txstate-etc/dataloader-factory/issues"
},
"homepage": "https://github.com/txstate-etc/dataloader-factory#readme",
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/js-yaml": "^4.0.0",
"@types/mocha": "^10.0.1",
"chai": "^4.3.0",
"eslint-config-love": "^62.0.0",
"js-yaml": "^4.0.0",
"mocha": "^10.2.0",
"ts-node": "^10.2.1",
"typescript": "^5.1.6"
},
"dependencies": {
"dataloader": "^2.0.0",
"txstate-utils": "^1.7.3"
},
"files": [
"dist/**/*",
"dist-esm/**/*"
]
}