-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "apollo-absinthe-graphql-upload",
"version": "1.0.3",
"description": "A client to be used with Apollo and Absinthe GraphQL for file uploads.",
"main": "dist/apollo-absinthe-graphql-upload.js",
"module": "dist/apollo-absinthe-graphql-upload.module.js",
"files": [
"src",
"dist"
],
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
"prebuild": "npm run lint",
"build": "rollup --config",
"prepublishOnly": "npm run build",
"precommit": "lint-staged"
},
"repository": {
"type": "git",
"url": "https://github.com/yubeio/apollo-absinthe-graphql-upload.git"
},
"keywords": [
"grapqhl",
"grapqhl-upload",
"grapqhl-fileupload",
"fileupload",
"apollo",
"apollo-absinthe-graphql",
"apollodata",
"apollographql",
"absinthe",
"absinthe-elixir",
"absinthe-graphql",
"phoenix",
"upload"
],
"author": "Giorgio Torres <[email protected]>",
"license": "ISC",
"dependencies": {
"apollo-client": "^1.9.3",
"babel-runtime": "^6.25.0",
"lodash": "^4.17.4",
"recursive-iterator": "^3.3.0"
},
"devDependencies": {
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.4.1",
"eslint-plugin-prettier": "^2.1.2",
"husky": "^0.14.3",
"lint-staged": "^4.0.3",
"prettier": "^1.5.3",
"rollup": "^0.45.2",
"rollup-plugin-babel": "^3.0.1",
"rollup-watch": "^4.3.1"
},
"eslintConfig": {
"parser": "babel-eslint",
"parserOptions": {
"sourceType": "module",
"ecmaVersion": 2017,
"ecmaFeatures": {
"experimentalObjectRestSpread": true
}
},
"env": {
"es6": true,
"node": true,
"browser": true
},
"extends": [
"eslint:recommended"
]
},
"lint-staged": {
"**/*.js": [
"eslint --fix",
"git add"
]
}
}