-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.87 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "near-protocol-rewards",
"version": "0.3.3",
"description": "A transparent, metric-based rewards system for NEAR projects",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"bin": {
"near-protocol-rewards": "dist/src/cli.js"
},
"scripts": {
"build": "npm run clean && tsc -p tsconfig.json && chmod +x ./dist/src/cli.js",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:unit": "jest \"tests/unit/.*\\.test\\.ts$\"",
"test:unit:watch": "jest \"tests/unit/.*\\.test\\.ts$\" --watch",
"lint": "eslint src --ext .ts",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint"
},
"files": [
"dist",
"docs"
],
"keywords": [
"near",
"protocol",
"rewards",
"github",
"metrics"
],
"author": "NEAR Protocol",
"license": "MIT",
"dependencies": {
"@octokit/rest": "^19.0.0",
"commander": "11.1.0",
"dotenv": "^16.0.0",
"near-protocol-rewards": "0.3.1",
"zod": "3.23.8"
},
"devDependencies": {
"@types/express": "^4.17.0",
"@types/jest": "29.5.14",
"@types/node": "^20.0.0",
"@types/pg": "^8.10.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"jest": "29.7.0",
"prettier": "^3.1.0",
"ts-jest": "29.2.5",
"typedoc": "^0.25.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbarnes850/near-protocol-rewards.git"
},
"bugs": {
"url": "https://github.com/jbarnes850/near-protocol-rewards/issues"
},
"homepage": "https://github.com/jbarnes850/near-protocol-rewards#readme",
"publishConfig": {
"access": "public"
}
}