forked from rfennell/JSONFileVersioner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 905 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 905 Bytes
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
{
"name": "node12-template-action",
"version": "0.0.0",
"private": true,
"description": "Node 12 template action",
"main": "lib/main.js",
"scripts": {
"build": "npm run lint && tsc",
"test": "jest",
"lint": "tslint -c tslint.json src/*.ts __tests__/*.test.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/actions/node12-template.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.0.0",
"fs": "^0.0.1-security",
"os": "^0.1.1"
},
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.4",
"del": "^3.0.0",
"fs-copy-file-sync": "^1.0.1",
"jest": "^24.8.0",
"jest-circus": "^24.7.1",
"json-diff": "^0.5.4",
"ts-jest": "^24.0.2",
"tslint": "^5.19.0",
"typescript": "^3.5.1"
}
}