-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
49 lines (49 loc) · 1000 Bytes
/
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
{
"name": "ghat",
"version": "0.14.0",
"description": "Reuse GitHub Actions workflows across repositories",
"keywords": [
"github",
"actions",
"workflows",
"share",
"templating",
"template",
"download",
"shareable",
"update",
"import",
"require",
"scaffolding"
],
"repository": "fregante/ghat",
"license": "MIT",
"author": "Federico Brigante <[email protected]> (fregante.com)",
"bin": {
"ghat": "dist/index.js"
},
"files": [
"dist/index.js"
],
"scripts": {
"build": "ncc build bin.ts",
"prepack": "npm run build",
"test": "npm run build && xo",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^0.8.0",
"@types/js-yaml": "^4.0.0",
"@types/node": "^14.14.22",
"@types/sade": "^1.7.2",
"@vercel/ncc": "^0.27.0",
"degitto": "^2.8.3",
"dot-prop": "^6.0.1",
"js-yaml": "^4.0.0",
"outdent": "^0.8.0",
"sade": "^1.7.4",
"split-on-first": "^2.0.1",
"typescript": "^4.1.3",
"xo": "^0.37.1"
}
}