-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.25 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
{
"name": "github-unfollow",
"version": "1.0.0",
"description": "Unfollow github users that don't follow you back.",
"repository": "https://github.com/eingress/github-unfollow.git",
"author": "Scott Mathieson <scott@eingress.io>",
"license": "ISC",
"keywords": [
"github",
"node",
"unfollow"
],
"scripts": {
"build": "yarn build:clean && babel src -d dist",
"build:clean": "rimraf dist/*",
"build:watch": "yarn build -w",
"coverage": "node --experimental-test-coverage --test tests/*",
"lint": "eslint './{,{src,tests}/**/}*.js' --fix --quiet",
"prestart": "yarn build",
"start": "node dist/index.js",
"start:dev": "nodemon src/index.js",
"test": "node --test tests/*",
"test:watch": "node --test --watch tests/*"
},
"dependencies": {
"dotenv": "16.4.7"
},
"devDependencies": {
"@babel/cli": "7.26.4",
"@babel/core": "7.26.0",
"@babel/eslint-parser": "7.26.5",
"@babel/node": "7.26.0",
"@babel/preset-env": "7.26.0",
"eslint": "9.18.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-prettier": "5.2.2",
"nodemon": "3.1.9",
"prettier": "3.4.2",
"rimraf": "6.0.1"
},
"packageManager": "yarn@1.22.19+sha1.4ba7fc5c6e704fce2066ecbfb0b0d8976fe62447"
}