-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
80 lines (80 loc) · 2.52 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
{
"name": "@jumpn/utils-graphql",
"version": "0.5.3",
"description": "GraphQL utilities",
"module": "dist/index.js",
"main": "compat/cjs/index.js",
"react-native": "src/index.js",
"scripts": {
"build:clean": "rm -rfv dist compat",
"build:flow:copy-source": "flow-copy-source -v src",
"build:flow": "yarn run build:flow:copy-source dist && yarn run build:flow:copy-source compat/cjs",
"build:readme": "pkg-to-readme --template ./readmeTemplate.ejs --force && documentation readme src/** --markdown-toc=false --section API && doctoc README.md",
"build:src": "rollup -c",
"build": "yarn run build:clean && yarn run build:src && yarn run build:flow && yarn run build:readme",
"lint": "eslint --rule 'flowtype-errors/show-errors: error'",
"lint:fix": "yarn run lint -- --fix",
"version": "yarn run build:readme && git add README.md",
"prepack": "yarn run build:clean && yarn run build:src && yarn run build:flow"
},
"lint-staged": {
"*.js": [
"yarn run lint:fix",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/jumpn/utils-graphql.git"
},
"publishConfig": {
"access": "public"
},
"author": "Mauro Titimoli <[email protected]> (https://github.com/mgtitimoli)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jumpn/utils-graphql/issues"
},
"homepage": "https://github.com/jumpn/utils-graphql#readme",
"keywords": [
"flow",
"graphql",
"utilities",
"utils"
],
"dependencies": {
"@babel/runtime": "7.2.0",
"core-js": "2.6.0",
"graphql": "14.0.2"
},
"devDependencies": {
"@babel/core": "7.2.0",
"@babel/plugin-transform-runtime": "7.2.0",
"@commitlint/cli": "7.2.1",
"@commitlint/config-conventional": "7.1.2",
"@commitlint/prompt-cli": "7.2.1",
"babel-eslint": "10.0.1",
"doctoc": "1.4.0",
"documentation": "9.0.0",
"eslint": "5.10.0",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "3.3.0",
"eslint-plugin-flowtype": "3.2.0",
"eslint-plugin-flowtype-errors": "3.6.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "3.0.0",
"flow-bin": "0.88.0",
"flow-copy-source": "2.0.2",
"flow-typed": "2.5.1",
"husky": "1.2.0",
"lint-staged": "8.1.0",
"np": "3.0.4",
"pascal-case": "2.0.1",
"pkg-to-readme": "1.1.0",
"prettier": "1.15.3",
"rollup": "0.67.4",
"rollup-plugin-babel": "4.1.0",
"rollup-plugin-commonjs": "9.2.0",
"rollup-plugin-node-resolve": "4.0.0"
}
}