-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
52 lines (52 loc) · 1.29 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
{
"name": "snapcraft-multiarch-build-action",
"version": "1.0.0",
"private": true,
"description": "A Github action that builds snapcraft projects for multiple architectures",
"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",
"all": "run-s build format lint pack test"
},
"pre-commit": [
"all"
],
"repository": {
"type": "git",
"url": "git+https://github.com/diddlesnaps/snapcraft-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Dani Llewellyn",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1"
},
"devDependencies": {
"@types/jest": "^29.2.0",
"@types/js-yaml": "^4.0.5",
"@types/node": "^16.18.0",
"@typescript-eslint/parser": "^5.40.1",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.26.0",
"eslint-plugin-github": "^4.4.0",
"eslint-plugin-jest": "^27.1.3",
"jest": "^29.2.1",
"jest-circus": "^29.2.1",
"js-yaml": "^4.1.0",
"npm-run-all2": "^6.0.2",
"pre-commit": "^1.2.2",
"prettier": "^2.7.1",
"ts-jest": "^29.0.3",
"typescript": "^4.8.4"
}
}