-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 1.43 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
{
"name": "literal-schema",
"version": "0.1.0-alpha1",
"main": "dist/literal-schema.cjs.js",
"module": "dist/literal-schema.esm.js",
"browser": "dist/literal-schema.umd.js",
"license": "MIT",
"author": "Sebastian Ferrari <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/sebas5384/literal-schema.git"
},
"bugs": {
"url": "https://github.com/sebas5384/literal-schema/issues"
},
"keywords": [
"graphql",
"apollo",
"schema",
"graphql-modules",
"graphql sdl",
"graphql-tag",
"template literal"
],
"devDependencies": {
"@babel/core": "7.4.0",
"@babel/preset-env": "7.4.2",
"babel-core": "7.0.0-bridge.0",
"babel-jest": "24.5.0",
"codecov": "^3.3.0",
"concurrently": "^4.1.0",
"jest": "24.5.0",
"rollup": "1.7.0",
"rollup-plugin-babel": "4.3.2",
"rollup-plugin-commonjs": "9.2.1",
"rollup-plugin-node-resolve": "4.0.1"
},
"scripts": {
"prepare": "yarn build",
"build": "rollup -c",
"watch": "rollup -c -w",
"start": "concurrently \"yarn:watch\" \"yarn:server\"",
"test": "jest"
},
"files": [
"dist"
],
"peerDependencies": {},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
}
}