-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.67 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": "sinopia_exporter",
"description": "Export RDF entities from a group in Sinopia Server",
"scripts": {
"eslint": "eslint --max-warnings 0 --color -c .eslintrc.js --ext js,jsx .",
"eslint-fix": "eslint --max-warnings 0 --color -c .eslintrc.js --ext js,jsx --fix .",
"eslint-fix-single": "eslint --color -c .eslintrc.js --fix",
"pretty": "prettier --check .",
"pretty-fix": "prettier --write .",
"fix": "npm run pretty-fix && npm run eslint-fix",
"lint": "npm run pretty && npm run eslint",
"jest-cov": "jest --colors --coverage --runInBand",
"jest-ci": "jest --colors --ci --coverage --runInBand",
"test": "jest --colors --coverage --silent --runInBand --detectOpenHandles",
"test-verbose": "jest --colors --runInBand"
},
"engines": {
"node": "16.8.x"
},
"keywords": [
"RDF",
"export",
"backup",
"Sinopia",
"LDP",
"LD4P",
"LD"
],
"author": "Johnathan Martin <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"@babel/core": "^7.15.5",
"@babel/node": "^7.15.4",
"@babel/preset-env": "^7.15.4",
"@babel/runtime": "^7.15.4",
"config": "^3.3.6",
"honeybadger": "^1.4.1",
"node-fetch": "^2.6.2",
"tiny-async-pool": "^1.2.0",
"yargs": "^16.2.0"
},
"devDependencies": {
"@babel/plugin-transform-runtime": "^7.15.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-security": "^1.4.0",
"jest": "^27.2.0",
"jest-fetch-mock": "^3.0.3",
"minimist": ">=1.2.2",
"prettier": "2.4.0"
}
}