-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.57 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
{
"name": "dfour-sync",
"version": "0.1.0b7",
"description": "A GitHub Action to sync data packages between a repository and a dfour storage instance",
"main": "lib/index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"coverage": "sensible-browser coverage/index.html",
"format": "prettier --write '{lib,test}/**/*.js*' && eslint --fix '{lib,test}/**/*.js*'",
"lint": "prettier --check '{lib,test}/**/*.js*' && eslint '{lib,test}/**/*.js*'",
"pretest": "npm run lint",
"test": "jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cividi/dfour-sync.git"
},
"keywords": [
"frictionless"
],
"author": "n0rdlicht",
"license": "MIT",
"bugs": {
"url": "https://github.com/cividi/dfour-sync/issues"
},
"homepage": "https://github.com/cividi/dfour-sync#readme",
"devDependencies": {
"eslint": "^7.31.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-standard": "^5.0.0",
"jest": "^27.0.6",
"npm-check-updates": "^11.8.3",
"prettier": "^2.3.2"
},
"dependencies": {
"@actions/artifact": "^0.5.2",
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^5.0.0",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.7.1",
"apollo-boost": "^0.4.9",
"fs-extra": "^10.0.0",
"graphql": "^15.5.1",
"graphql-request": "^3.5.0",
"graphql-tag": "^2.12.5",
"tmp-promise": "^3.0.2"
}
}