-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.53 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.53 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
47
48
49
50
51
52
53
54
{
"name": "vobi-graphql",
"version": "1.0.13",
"description": "Vobi Graphql command line tool",
"main": "./build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/vobi-io/vobi-graphql"
},
"scripts": {
"transpile": "npx babel --presets @babel/preset-env ./src --out-dir ./build --plugins @babel/plugin-transform-runtime",
"build": "npm run lint && npm run transpile",
"lint": "eslint ./src",
"lint-fix": "eslint ./src --fix",
"test": "nyc mocha --require babel-core/register",
"prepublishOnly": "npm run build",
"prepare": "npm run build"
},
"keywords": [
"vobi-graphql",
"graphql"
],
"author": "",
"license": "ISC",
"dependencies": {
"@babel/runtime": "^7.6.3",
"chalk": "^2.4.1",
"commander": "^2.18.0",
"del": "^3.0.0",
"graphql": "^14.0.2",
"handlebars": ">=4.0.14",
"isomorphic-fetch": "^2.2.1"
},
"bin": {
"vobi-graphql": "./build/index.js"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/plugin-transform-runtime": "^7.1.0",
"@babel/polyfill": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-es2017": "^7.0.0-beta.53",
"babel-plugin-transform-runtime": "^6.23.0",
"eslint": "^5.6.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0",
"mongoose-schema-jsonschema": "^1.1.15",
"nyc": "^13.0.1",
"transform-runtime": "0.0.0"
}
}