forked from Gerschtli/generate-nix-hash
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 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
{
"name": "generate-nix-hash",
"version": "0.0.0",
"private": true,
"description": "Github Action to write a JSON file with rev and sha256 of given repository revision",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"pack": "ncc build",
"test": "jest",
"upgrade": "npm-check-updates --upgrade",
"all": "npm run build && npm run format && npm run lint && npm run pack && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Gerschtli/generate-nix-hash.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Tobias Happ",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/node": "^18.11.7",
"@typescript-eslint/parser": "^5.41.0",
"@zeit/ncc": "^0.22.3",
"eslint": "^8.26.0",
"eslint-plugin-github": "^4.4.0",
"eslint-plugin-jest": "^27.1.3",
"jest": "^29.2.2",
"jest-circus": "^29.2.2",
"js-yaml": "^4.1.0",
"npm-check-updates": "^16.3.16",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}