-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 2.86 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@swivel-finance/illuminate-js",
"version": "2.0.0",
"description": "Javascript library for working with the Illuminate Protocol",
"type": "module",
"main": "build/index.js",
"module": "build/index.js",
"types": "build/index.d.ts",
"exports": {
".": "./build/index.js",
"./index": "./build/index.js",
"./index.js": "./build/index.js",
"./constants": "./build/constants/index.js",
"./constants/*": "./build/constants/*.js",
"./constants/*.js": "./build/constants/*.js",
"./constants/abi": "./build/constants/abi/index.js",
"./constants/abi/*": "./build/constants/abi/*.js",
"./constants/abi/*.js": "./build/constants/abi/*.js",
"./constants/abi/adapters": "./build/constants/abi/adapters/index.js",
"./constants/abi/adapters/*": "./build/constants/abi/adapters/*.js",
"./constants/abi/adapters/*.js": "./build/constants/abi/adapters/*.js",
"./package.json": "./package.json"
},
"files": [
"/build",
"/src/**/*.ts"
],
"author": "swivel-finance",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swivel-Finance/illuminate-js/issues"
},
"homepage": "https://github.com/Swivel-Finance/illuminate-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Swivel-Finance/illuminate-js.git"
},
"keywords": [
"Illuminate",
"TypeScript",
"JavaScript",
"Swivel",
"Finance"
],
"scripts": {
"clean": "rimraf ./build ./coverage",
"commit": "cz",
"prebuild": "npm run clean",
"prebuild:prod": "rimraf ./build",
"build": "tsc --build",
"build:watch": "npm run build -- --watch",
"build:prod": "tsc --build ./src/tsconfig.prod.json",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"lint:fix": "npm run lint -- --fix",
"test": "mocha",
"test:watch": "npm run test -- --watch",
"test:coverage": "c8 npm run test",
"prerelease": "npm-run-all lint build test:coverage build:prod",
"release": "standard-version",
"release:minor": "npm run release -- --release-as minor",
"release:major": "npm run release -- --release-as major",
"release:dry": "npm run release -- --dry-run",
"release:publish": "git push --follow-tags origin main && npm publish --access public"
},
"devDependencies": {
"@swivel-finance/eslint-config": "^0.2.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.38",
"@types/sinon": "^10.0.11",
"c8": "^7.11.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.54.0",
"ethers": "^5.6.8",
"mocha": "^10.0.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"sinon": "^14.0.0",
"standard-version": "^9.5.0",
"tslib": "^2.6.2",
"typescript": "^5.2.2"
},
"peerDependencies": {
"ethers": "^5.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}