-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 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
{
"name": "@edge/account-utils",
"version": "0.4.1",
"description": "Utility library for Account API",
"main": "dist/lib/index.js",
"author": "Edge Network <[email protected]>",
"homepage": "https://github.com/edge/account-utils",
"repository": {
"type": "git",
"url": "https://github.com/edge/account-utils.git"
},
"license": "SEE LICENSE IN LICENSE.md",
"files": ["dist/**/*.ts", "dist/**/*.js"],
"scripts": {
"build": "tsc",
"lint": "eslint --ext .ts src",
"test": "mocha -r ts-node/register test/**/*.test.ts"
},
"devDependencies": {
"@edge/eslint-config-typescript": "^0.1.5",
"@edge/misc-utils": "^1.0.7",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.6",
"@types/superagent": "^8.1.7",
"@typescript-eslint/eslint-plugin": "^7.9.0",
"@typescript-eslint/parser": "^7.9.0",
"chai": "^5.1.1",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"mocha": "^10.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"@edge/cache-config": "^1.1.0",
"@edge/xe-utils": "^1.11.1",
"stripe": "^9.12.0",
"superagent": "^9.0.2"
}
}