-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
57 lines (57 loc) · 1.36 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": "graphql-cli-load",
"version": "0.1.5",
"description": "GraphQL CLI Data Loading plugin",
"files": [
"LICENSE",
"README.md",
"dist/"
],
"main": "dist/index.js",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "jest",
"lint": "tslint {src,test}/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neo4j-graphql/graphql-cli-load.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/neo4j-graphql/graphql-cli-load/issues"
},
"homepage": "https://github.com/neo4j-graphql/graphql-cli-load#readme",
"devDependencies": {
"@types/graphql": "^0.10.0",
"@types/jest": "^20.0.5",
"@types/node": "^8.0.17",
"@types/papaparse": "^4.1.30",
"jest": "^20.0.4",
"ts-jest": "^20.0.7",
"tslint": "^5.5.0",
"tslint-config-standard": "^6.0.1",
"typescript": "^2.2.0"
},
"dependencies": {
"chalk": "^2.1.0",
"glob": "^7.1.2",
"graphql": "^0.10.5",
"graphql-cli": "^1.0.0-beta.4",
"graphql-config": "^1.0.2",
"graphql-request": "^1.2.0",
"papaparse": "^4.1.30"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
]
}
}