-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 970 Bytes
/
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
{
"name": "graphql-directive-uppercase",
"version": "1.0.0",
"main": "lib/index.js",
"files": [
"lib/index.js"
],
"author": "Jakub Benes <[email protected]>",
"license": "MIT",
"scripts": {
"prepublish": "yarn build",
"build": "babel index.js -d lib",
"build:watch": "yarn build --watch",
"dev": "yarn build:watch & micro-dev example/index.js",
"test": "jest",
"test:watch": "jest:watch",
"lint": "eslint .",
"lint:fix": "yarn lint --fix"
},
"peerDependencies": {
"graphql": "^0.13.2",
"graphql-tools": "^2.23.1"
},
"devDependencies": {
"apollo-server-micro": "^1.3.4",
"babel-cli": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.1",
"eslint": "^4.19.1",
"eslint-config-callstack-io": "^1.1.1",
"graphql": "^0.13.2",
"graphql-tools": "^2.23.1",
"jest": "^22.4.3",
"micro": "^9.1.4",
"micro-dev": "^2.2.2",
"microrouter": "^3.1.1"
}
}