This repository was archived by the owner on Jan 4, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.34 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.34 KB
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
{
"name": "graphql-obj2arg",
"version": "0.1.0",
"description": "Convert a JavaScript object to a GraphQL arguments string",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/graphql-factory/graphql-obj2arg.git"
},
"scripts": {
"build:copybrc": "cp build/.build.babelrc src/.babelrc",
"build:rmbrc": "rm -f src/.babelrc",
"example": "node example/index.js --harmony",
"build": "npm run build:copybrc && rollup -c build/rollup.config.js && npm run build:rmbrc",
"test": "npm run build && mocha test/index.js"
},
"author": "Branden Horiuchi <bhoriuchi@gmail.com>",
"dependencies": {},
"devDependencies": {
"chai": "^3.5.0",
"babel-core": "^6.0.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.0.0",
"babel-register": "^6.11.0",
"babel-runtime": "^6.9.0",
"babel-plugin-transform-runtime": "^6.0.0",
"mocha": "^3.0.0",
"rollup": "^0.36.0",
"rollup-plugin-babel": "^2.6.0",
"babel-preset-es2015-rollup": "^1.1.0"
},
"bugs": {
"url": "https://github.com/graphql-factory/graphql-obj2arg/issues"
},
"homepage": "https://github.com/graphql-factory/graphql-obj2arg#readme",
"directories": {
"example": "example"
},
"keywords": [
"graphql",
"arguments",
"object",
"convert"
]
}