-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
92 lines (92 loc) · 2.93 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@contentacms/contentajs-graphql",
"version": "0.0.0-development",
"description": "GraphQL helpers for Contenta JS",
"main": "lib/index.js",
"scripts": {
"test": "jest --coverage --detectOpenHandles --forceExit",
"test-ci": "NODE_ENV=test jest --coverage --ci --runInBand --detectOpenHandles --forceExit",
"lint": "eslint .",
"prepare": "npm run build",
"semantic-release": "semantic-release",
"build": "babel src -d lib --delete-dir-on-start --copy-files && flow-copy-source --ignore *.test.js src lib",
"emdaer": "emdaer && git add *.md",
"prettier": "prettier --write 'src/**/*.js' && eslint 'src/**/*.js' --fix",
"flow": "flow status --strip-root src",
"installPeers": "npm install --no-save `node ./scripts/printPeers.js`"
},
"repository": {
"type": "git",
"url": "https://github.com/contentacms/contentajs-graphql.git"
},
"keywords": [
"graphql",
"contentacms",
"api",
"drupal",
"decoupled"
],
"author": "Mateu Aguiló Bosch <[email protected]> (e0ipso)",
"license": "MIT",
"bugs": {
"url": "https://github.com/contentacms/contentajs-graphql/issues"
},
"homepage": "https://github.com/contentacms/contentajs-graphql#readme",
"peerDependencies": {
"graphql": "^14"
},
"devDependencies": {
"@babel/cli": "^7.1.2",
"@babel/core": "^7.1.2",
"@babel/node": "^7.0.0",
"@babel/preset-env": "^7.1.0",
"@babel/preset-flow": "^7.0.0",
"@commitlint/config-angular": "^7.1.2",
"@emdaer/cli": "^3.2.3",
"@emdaer/plugin-contributors-details-github": "^3.2.3",
"@emdaer/plugin-documentation": "^3.2.3",
"@emdaer/plugin-image": "^3.2.3",
"@emdaer/plugin-import": "^3.2.3",
"@emdaer/plugin-license-reference": "^3.2.3",
"@emdaer/plugin-shields": "^3.2.3",
"@emdaer/plugin-value-from-package": "^3.2.3",
"@emdaer/transform-prettier": "^3.2.3",
"@emdaer/transform-table-of-contents": "^3.2.3",
"babel-core": "^7.0.0-bridge.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^23.6.0",
"commitlint": "^7.2.1",
"eslint": "^5.7.0",
"eslint-config-prettier": "^3.1.0",
"eslint-config-problems": "^1.1.0",
"eslint-plugin-babel": "^5.2.1",
"eslint-plugin-better": "^0.1.5",
"eslint-plugin-flowtype": "^3.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jest": "^21.26.1",
"eslint-plugin-prettier": "^3.0.0",
"flow-bin": "^0.84.0",
"flow-copy-source": "^2.0.2",
"flow-typed": "^2.5.1",
"graphql-tools": "^4.0.3",
"husky": "^1.1.2",
"jest": "^23.6.0",
"lint-staged": "^7.3.0",
"prettier": "^1.14.3",
"semantic-release": "^15.10.5",
"semantic-release-conventional-commits": "^2.0.1",
"sinon": "^7.1.0"
},
"dependencies": {
"apollo-server-express": "^2.1.0",
"fs-extra": "^7.0.0",
"got": "^9.2.2"
},
"engines": {
"node": ">=8.10"
},
"private": false,
"publishConfig": {
"access": "public"
}
}