-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
86 lines (86 loc) · 2.28 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
86
{
"name": "@playlyfe/gql",
"version": "0.0.0-development",
"description": "gql service and tools",
"main": "lib/index.js",
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "https://github.com/Mayank1791989/gql.git"
},
"scripts": {
"test": "yarn run check-code && npm run testonly -- --coverage",
"testonly": "cross-env NODE_ENV=test jest",
"check-code": "yarn run lint",
"flow-check": "flow check",
"lint": "eslint src",
"flow-typed-update": "flow-typed update",
"build": "yarn run clean && babel ./src --out-dir ./lib --ignore '**/__**__/**,**/node_modules/**'",
"report-coverage": "codecov",
"semantic-release": "semantic-release",
"clean": "rm -rf lib",
"commit": "git-cz",
"precommit": "yarn run test",
"travis-deploy-once": "travis-deploy-once"
},
"author": "Mayank Agarwal <[email protected]>",
"license": "MIT",
"files": [
"lib",
"README.md"
],
"dependencies": {
"apollo-codegen": "0.10.13",
"babel-runtime": "6.23.0",
"dentist": "1.0.3",
"fb-watchman": "2.0.0",
"find-config": "1.0.0",
"flow-runtime": "0.14.0",
"graphql": "0.9.6",
"graphql-language-service-interface": "0.0.11",
"graphql-language-service-parser": "0.0.10",
"invariant": "2.2.2",
"json5": "0.5.1",
"keymirror": "0.1.1",
"leven": "2.1.0",
"lodash": "4.17.15",
"minimatch": "3.0.4",
"node-ipc": "9.0.1",
"parse-glob": "3.0.4",
"promise-retry": "1.1.1"
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-jest": "20.0.1",
"babel-plugin-flow-runtime": "0.11.1",
"babel-polyfill": "6.23.0",
"babel-preset-playlyfe": "1.2.0",
"codecov": "2.2.0",
"commitizen": "2.9.6",
"cross-env": "5.0.0",
"cz-conventional-changelog": "2.0.0",
"eslint": "3.19.0",
"eslint-plugin-playlyfe": "3.0.0",
"flow-bin": "0.46.0",
"flow-typed": "2.1.2",
"husky": "0.13.3",
"jest": "20.0.1",
"memory-fs": "0.4.1",
"semantic-release": "^12.2.2",
"travis-deploy-once": "^4.3.2"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"testRegex": "__tests__/.*.test.js$",
"testEnvironment": "node",
"roots": [
"src/"
]
}
}