forked from labtwentyfive/apollo-absinthe-upload-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.19 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
{
"scripts": {
"test": "yarn run jest",
"lint": "yarn run tslint --type-check -p .",
"build": "yarn run tsc -p .",
"prepare": "yarn run lint && rm -rf dist/ && yarn run build"
},
"name": "apollo-absinthe-upload-client",
"version": "1.0.1",
"description": "A network interface for Apollo that enables file-uploading to Absinthe back ends",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "labtwentyfive/apollo-absinthe-upload-client",
"author": "Christian Lentfort <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"apollo-client": "^1.1.2"
},
"devDependencies": {
"@types/jest": "^21.1.0",
"graphql": "^0.10.0",
"jest": "^21.1.0",
"prettier": "^1.7.0",
"tslint": "^5.7.0",
"tslint-config-prettier": "^1.5.0",
"tslint-plugin-prettier": "^1.2.0",
"typescript": "^2.1.4"
},
"prettier": {
"tabWidth": 4,
"parser": "typescript"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"<rootDir>/src/**/__tests__/*.(ts|tsx|js)"
]
}
}