-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.69 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
{
"name": "@patternson/registry-client",
"version": "0.0.0-development",
"description": "apollo client for patternson registry",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "babel src -d lib",
"lint": "eslint .",
"prepare": "npm run build",
"semantic-release": "semantic-release"
},
"repository": {
"type": "git",
"url": "https://github.com/patternsonio/patternson-registry-client.git"
},
"author": "Hannes Diercks",
"license": "MIT",
"bugs": {
"url": "https://github.com/patternsonio/patternson-registry-client/issues"
},
"homepage": "https://github.com/patternsonio/patternson-registry-client#readme",
"devDependencies": {
"babel-cli": "6.26.0",
"babel-jest": "23.6.0",
"babel-plugin-transform-object-rest-spread": "6.26.0",
"babel-preset-env": "1.7.0",
"codecov": "3.2.0",
"eslint": "5.15.2",
"eslint-config-airbnb-base": "13.1.0",
"eslint-config-prettier": "4.1.0",
"eslint-plugin-import": "2.14.0",
"eslint-plugin-prettier": "3.0.1",
"fetch-mock": "7.3.1",
"graphql-tag": "2.10.1",
"jest": "23.6.0",
"prettier": "1.15.3",
"semantic-release": "15.13.3"
},
"jest": {
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!node_modules/**",
"!coverage/**",
"!lib/**",
"!index.js",
"!src/polyfills.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
}
},
"dependencies": {
"aws-appsync": "1.7.2",
"aws-sdk": "2.422.0",
"babel-runtime": "6.26.0",
"isomorphic-fetch": "2.2.1",
"url-join": "4.0.0",
"ws": "^3.3.3"
}
}