-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.67 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
{
"name": "@loreum/sdk",
"version": "0.0.1",
"description": "Loreum Protocol TypeScript SDK",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "eslint . --ext .ts",
"test": "ts-mocha -p tsconfig.json src/**/*.spec.ts",
"test:watch": "ts-mocha -p tsconfig.json src/**/*.spec.ts -w --watch-files '**/*.ts'",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "git add -A src",
"postversion": "git push && git push --tags",
"check-updates": "npx npm-check-updates",
"check-updates:minor": "npx npm-check-updates --target minor",
"check-updates:patch": "npx npm-check-updates --target patch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/loreum-org/sdk.git"
},
"files": [
"lib/**/*"
],
"keywords": [
"typescript",
"npm",
"template",
"ts"
],
"author": "Loreum Labs Ltd.",
"license": "MIT",
"bugs": {
"url": "https://github.com/loreum-org/sdk/issues"
},
"homepage": "https://github.com/loreum-org/sdk#readme",
"devDependencies": {
"@types/expect": "^24.3.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.51.0",
"@typescript-eslint/parser": "^5.51.0",
"ansi-regex": ">=6.0.1",
"eslint": "^8.33.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"ts-mocha": "^10.0.0",
"typescript": "^4.9.5"
},
"dependencies": {
"ethers": "^6.7.1"
}
}