-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
64 lines (64 loc) · 1.28 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
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "contentful-graph",
"version": "1.6.1",
"description": "",
"main": "src/index.js",
"scripts": {
"test": "mocha",
"lint": "eslint src/**/*.js test/**/*.js ./*.js",
"start": "./import.js"
},
"contributors": [
{
"name": "Yaraslau Kurmyza",
"email": "[email protected]"
},
{
"name": "David Daester",
"email": "[email protected]"
},
{
"name": "Silvio Paganini",
"email": "[email protected]"
}
],
"repository": {
"type": "git",
"url": "https://github.com/lotas/contentful-graph.git"
},
"bugs": {
"url": "https://github.com/lotas/contentful-graph/issues"
},
"license": "ISC",
"dependencies": {
"contentful": "^8.1.7",
"contentful-management": "^7.5.1",
"dotenv": "^8.2.0",
"minimist": "^1.2.5"
},
"devDependencies": {
"eslint": "^7.14.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^8.2.1"
},
"keywords": [
"contentful",
"dotviz",
"graph",
"content model dependency"
],
"engines": {
"node": ">=10.0.0",
"npm": ">=6.14.0"
},
"files": [
"bin",
"src",
"import.js"
],
"bin": {
"contentful-graph": "./bin/contentful-graph"
}
}