-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
49 lines (49 loc) · 1.39 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": "graphql-middleware-apollo-upload-server",
"description": "File upload is hard, that's why you need me!",
"version": "0.0.0-semantic-release",
"files": [
"dist"
],
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"repository": "https://github.com/homeroom-live/graphql-middleware-upload",
"author": "Matic Zavadlal <[email protected]>",
"scripts": {
"prepublish": "npm run test",
"build": "rm -rf dist && tsc -d",
"lint": "tslint --project tsconfig.json {src}/**/*.ts && prettier-check --ignore-path .gitignore {src,.}/{*.ts,*.js}",
"test": "npm run lint && npm run build && npm run test-ava",
"test-ava": "ava --verbose",
"semantic-release": "semantic-release"
},
"dependencies": {
"apollo-upload-server": "^5.0.0"
},
"devDependencies": {
"@types/graphql": "0.13.4",
"ava": "0.25.0",
"graphql": "0.13.2",
"graphql-middleware": "1.7.8",
"graphql-tools": "4.0.4",
"prettier": "1.14.3",
"prettier-check": "2.0.0",
"semantic-release": "15.8.1",
"ts-node": "7.0.1",
"tslint": "5.11.0",
"tslint-config-prettier": "1.15.0",
"tslint-config-standard": "7.1.0",
"typescript": "2.9.2"
},
"peerDependencies": {
"graphql": "^0.13.2",
"graphql-middleware": "^1.4.2"
},
"release": {
"branch": "master"
},
"license": "MIT"
}