-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.03 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
{
"name": "graph-object",
"version": "1.0.1",
"description": "An Object Graph Mapper for GraphQL",
"main": "build/index.js",
"files": [
"build"
],
"keywords": [
"graphql",
"object",
"graph",
"mapping",
"mapper",
"ogm"
],
"scripts": {
"test": "mocha tests/*.spec.js --require config/mocha.js --compilers js:babel-core/register",
"lint": "eslint plugin",
"prepublish": "babel -d build/ package/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Quadric/graph-object.git"
},
"author": "Victor Duarte (Quadric ApS) <contact@quadric.net>",
"license": "ISC",
"bugs": {
"url": "https://github.com/Quadric/graph-object/issues"
},
"homepage": "https://github.com/Quadric/graph-object#readme",
"devDependencies": {
"babel-cli": "6.x.x",
"babel-core": "^6.14.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-2": "^6.13.0"
},
"dependencies": {
"babel-runtime": "^6.11.6"
}
}