forked from codemeasandwich/graphql-query-builder
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
52 lines (52 loc) · 1.22 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
{
"name": "wix-graphql-query-builder",
"version": "1.0.1",
"description": "a simple but powerful graphQL query builder",
"bin": {},
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"@types/node": "^10.5.2",
"bower": "^1.7.9",
"bower-auto-release": "^1.0.99",
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"istanbul": "^0.4.4",
"mocha": "^2.5.3",
"typescript": "^2.5.2",
"yoshi": "latest"
},
"scripts": {
"build": ":",
"pretest": "yoshi build",
"test": "npm run test:unit",
"test:unit": "yoshi test --mocha",
"release": "yoshi release; bower-auto-release --dist dist/src"
},
"repository": {
"type": "git",
"url": "git://github.com/wix/graphql-query-builder.git"
},
"homepage": "https://github.com/wix/graphql-query-builder",
"keywords": [
"graphql",
"query",
"builder",
"generator",
"orm"
],
"author": {
"name": "Brian Shannon",
"url": "https://github.com/codemeasandwich/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/codemeasandwich/graphql-query-builder/issues"
},
"private": false,
"publishConfig": {
"registry": "http://repo.dev.wix/artifactory/api/npm/npm-local/"
}
}