generated from dev-protocol/template-repos-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 1.9 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
{
"name": "@devprotocol/util-ts",
"version": "4.0.0",
"description": "TypeScript Utilities",
"main": "dist/index.js",
"module": "./dist/index.mjs",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./dist/util-ts.d.ts"
},
"types": "./dist/util-ts.d.ts",
"files": [
"dist/*.mjs",
"dist/*.js",
"dist/*.ts",
"!**/*.test.*"
],
"scripts": {
"test": "ava",
"build": "yarn build:ts && yarn build:rollup",
"build:ts": "tsc",
"build:rollup": "rollup -c",
"watch": "tsc -w",
"pretest": "yarn build:ts",
"lint": "yarn lint:eslint && yarn lint:format",
"lint:eslint": "eslint . --ext .ts --fix",
"lint:format": "prettier --write '**/*.{ts,js,json,md,yml}'",
"prepack": "yarn test && yarn build",
"clean": "rimraf dist",
"prebuild": "yarn clean",
"prepare": "husky install"
},
"author": "",
"license": "MPL-2.0",
"dependencies": {
"ramda": "^0.30.0"
},
"devDependencies": {
"@ava/typescript": "3.0.1",
"@rollup/plugin-multi-entry": "4.1.0",
"@rollup/plugin-typescript": "8.5.0",
"@types/dotenv": "8.2.0",
"@types/node": "20.16.14",
"@types/ramda": "0.30.2",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "5.62.0",
"ava": "4.3.3",
"dotenv": "16.4.5",
"eslint": "7.32.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-functional": "3.7.2",
"ethereum-waffle": "3.4.4",
"husky": "7.0.4",
"npm-run-all2": "5.0.2",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"rollup": "2.79.2",
"rollup-plugin-dts": "4.2.3",
"typescript": "4.9.5"
},
"ava": {
"files": [
"**/*.test.ts"
],
"typescript": {
"rewritePaths": {
"/": "dist/"
},
"compile": false
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/dev-protocol/util-ts.git"
},
"bugs": {
"url": "https://github.com/dev-protocol/util-ts/issues"
},
"homepage": "https://github.com/dev-protocol/util-ts#readme"
}