-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
54 lines (54 loc) · 1.43 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
{
"name": "tortellini",
"version": "0.1.0",
"private": true,
"description": "check dependency licence issues using ort",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tortellini-tools/action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Netherlands eScience Center",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.3.0",
"@actions/exec": "^1.0.4",
"@actions/io": "^1.1.0",
"atob": "^2.1.2",
"node-fetch": "^2.6.1",
"node-html-parser": "^3.3.5",
"pako": "^2.0.3"
},
"devDependencies": {
"@types/atob": "^2.1.2",
"@types/jest": "^26.0.15",
"@types/node": "^15.12.2",
"@types/node-fetch": "^2.5.10",
"@types/pako": "^1.0.1",
"@typescript-eslint/parser": "^4.8.1",
"@vercel/ncc": "^0.28.5",
"eslint": "^7.17.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^4.1.0",
"prettier": "2.3.0",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
}
}