generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "create-my-awesome",
"version": "1.0.0",
"private": true,
"description": "Github Actions for automatically generating a personal awesome project to organize all your starred repositories",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run package && npm test",
"local": "ts-node src/main.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luob/create-my-awesome.git"
},
"keywords": [
"actions",
"node",
"awesome"
],
"author": "luob",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/github": "^5.0.0",
"capital-case": "^1.0.4",
"dotenv": "^16.0.1",
"mkdirp": "^1.0.4",
"param-case": "^3.0.4"
},
"devDependencies": {
"@types/jest": "^27.5.0",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.7.9",
"@vercel/ncc": "^0.34.0",
"jest": "^27.5.1",
"jest-circus": "^27.4.5",
"js-yaml": "^4.1.0",
"ts-jest": "^27.1.2",
"ts-node": "^10.4.0",
"typescript": "^4.5.2"
}
}