-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
51 lines (51 loc) · 1.49 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
{
"name": "@fivebinaries/coin-selection",
"version": "2.2.1",
"description": "",
"keywords": [
"coin selection"
],
"license": "Apache-2.0",
"author": "fivebinaries.com",
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"browser": {
"@emurgo/cardano-serialization-lib-nodejs": "@emurgo/cardano-serialization-lib-browser"
},
"files": [
"lib/**/*.js",
"lib/**/*.ts"
],
"scripts": {
"build": "yarn clean && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"clean": "rimraf lib",
"lint": "eslint ./src/**/*.ts",
"prepublishOnly": "yarn build",
"type-check": "yarn tsc -p tsconfig.types.json",
"test": "yarn run-s 'test:*'",
"test:unit": "jest -c ./jest.config.js",
"test:badges": "make-coverage-badge --output-path ./docs/badge-coverage.svg"
},
"devDependencies": {
"@swc-node/jest": "^1.5.2",
"@types/jest": "^28.1.6",
"@types/node": "^16.3.2",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "5.32.0",
"eslint": "8.21.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"jest": "^28.1.3",
"make-coverage-badge": "^1.2.0",
"npm-run-all": "^4.1.5",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"typescript": "^4.7.4"
},
"dependencies": {
"@emurgo/cardano-serialization-lib-browser": "^11.5.0",
"@emurgo/cardano-serialization-lib-nodejs": "11.5.0"
},
"packageManager": "[email protected]"
}