Skip to content
This repository was archived by the owner on Jun 16, 2022. It is now read-only.

Commit a0c6878

Browse files
committed
Add scripts to package json and update dependencies; add action.yml
1 parent 520d3ac commit a0c6878

File tree

6 files changed

+4697
-2
lines changed

6 files changed

+4697
-2
lines changed

.eslintrc.json

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"env": {
3+
"browser": true,
4+
"es2021": true
5+
},
6+
"extends": [
7+
"standard"
8+
],
9+
"parser": "@typescript-eslint/parser",
10+
"parserOptions": {
11+
"ecmaVersion": "latest",
12+
"sourceType": "module"
13+
},
14+
"plugins": [
15+
"@typescript-eslint"
16+
],
17+
"rules": {
18+
}
19+
}

action.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: 'TypeScripy Library for Creating Dependency Snapshots'
2+
description: 'Detects dependencies in projects'
3+
author: 'lorenanicole'
4+
inputs:
5+
token:
6+
required: true
7+
description: 'Personal access token for the GitHub API'
8+
runs:
9+
using: 'node16'
10+
main: 'dist/index.js'

0 commit comments

Comments
 (0)