-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
84 lines (84 loc) · 2.48 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
{
"name": "@biglup/cardano-ephemerals",
"version": "0.0.1",
"description": "Types and functions for constructing Ephemeral metadata",
"engines": {
"node": ">=14.20.1"
},
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Biglup/cardano-ephemerals.git"
},
"publishConfig": {
"access": "public"
},
"contributors": [
"Angel Castillo <angel.castillob@prototnmail.io>"
],
"license": "Apache-2.0",
"scripts": {
"build:esm": "tsc -p src/tsconfig.json --outDir ./dist/esm --module es2020",
"build:cjs": "tsc --build src",
"build": "run-s build:cjs build:esm",
"cleanup:dist": "rm -rf dist",
"cleanup:nm": "rm -rf node_modules",
"cleanup": "run-s cleanup:dist cleanup:nm",
"lint": "eslint -c ./complete.eslintrc.js \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "yarn lint --fix",
"prepack": "yarn build",
"test": "jest -c ./jest.config.js"
},
"devDependencies": {
"@atixlabs/eslint-config": "^1.2.3",
"@types/jest": "^26.0.24",
"@types/node": "^18.11.8",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^7.32.0",
"eslint-import-resolver-typescript": "^2.7.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-jest": "^24.4.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-sonarjs": "^0.9.1",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"eslint-plugin-sort-keys-fix": "^1.1.2",
"eslint-plugin-unicorn": "^35.0.0",
"eslint-watch": "^7.0.0",
"prettier": "^2.3.2",
"fs-extra": "^10.0.0",
"husky": "^7.0.1",
"jest": "^28.1.3",
"npm-run-all": "^4.1.5",
"shx": "^0.3.3",
"ts-jest": "^28.0.7",
"ts-node": "^10.0.0",
"ts-node-dev": "^1.1.8",
"typedoc": "^0.23.24",
"typedoc-plugin-missing-exports": "^1.0.0",
"typescript": "^4.7.4"
},
"dependencies": {
"@cardano-sdk/core": "^0.11.0",
"@cardano-sdk/util": "^0.9.0"
},
"files": [
"dist/*",
"!dist/tsconfig.tsbuildinfo",
"LICENSE"
],
"bugs": {
"url": "https://github.com/Biglup/cardano-ephemerals/issues"
},
"homepage": "https://github.com/Biglup/cardano-ephemerals#readme",
"author": "Angel Castillo <angel.castillob@prototnmail.io>"
}