-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.35 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
{
"name": "graphql-relay-mongoose",
"version": "0.1.2",
"description": "A library to help construct connection with edges and cursors for a graphql-js server supporting react-relay with mongoose ODM.",
"main": "./dist/index.js",
"scripts": {
"lint": "eslint src test",
"build:source": "rimraf dist/ && babel src/ --out-dir dist/",
"build:tests": "rimraf test-dist/ && babel test/ --out-dir test-dist/",
"clean": "rimraf dist/ && rimraf test-dist/",
"build": "npm run build:source && npm run build:tests",
"test": "node node_modules/mocha/bin/mocha --reporter spec test-dist/*",
"prepublish": "npm run build:source"
},
"engines": {
"node": ">=4.8.4"
},
"homepage": "https://github.com/geekcups-team/graphql-relay-js-mongoose",
"bugs": {
"url": "https://github.com/geekcups-team/graphql-relay-js-mongoose/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/geekcups-team/graphql-relay-js-mongoose.git"
},
"author": "Andrea Beggiato",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-eslint": "^7.2.3",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"eslint": "^4.5.0",
"eslint-config-airbnb-base": "^11.3.2",
"eslint-plugin-import": "^2.7.0",
"rimraf": "^2.6.1"
}
}