-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
83 lines (83 loc) · 2.28 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
{
"name": "@swivel-finance/swivel-js",
"version": "4.0.3",
"description": "Javascript library for working with the Swivel Finance Protocol",
"type": "module",
"main": "build/index.js",
"module": "build/index.js",
"types": "build/index.d.ts",
"files": [
"/build",
"/src/**/*.ts"
],
"author": "swivel-finance",
"license": "MIT",
"bugs": {
"url": "https://github.com/Swivel-Finance/swivel-js/issues"
},
"homepage": "https://github.com/Swivel-Finance/swivel-js#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/Swivel-Finance/swivel-js.git"
},
"keywords": [
"Swivel",
"Finance",
"Javascript",
"Typescript",
"Badass"
],
"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 v4 && npm publish --access public"
},
"devDependencies": {
"@swivel-finance/eslint-config": "^0.1.0",
"@types/mocha": "^9.1.1",
"@types/sinon": "^10.0.12",
"c8": "^7.11.3",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-plugin-import": "^2.26.0",
"ethers": "^5.6.9",
"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.4.0",
"typescript": "^4.7.4"
},
"peerDependencies": {
"ethers": "^5.2.0"
},
"dependencies": {
"cross-fetch": "^3.1.5"
},
"engines": {
"node": ">=15",
"npm": ">=7"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}