-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.65 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
{
"author": "Transcend Inc.",
"name": "@transcend-io/type-utils",
"description": "Small package containing useful typescript utilities.",
"version": "1.8.3",
"homepage": "https://github.com/transcend-io/type-utils",
"repository": {
"type": "git",
"url": "https://github.com/transcend-io/type-utils.git"
},
"license": "MIT",
"main": "build/index",
"files": [
"build/**/*",
"package.json"
],
"scripts": {
"update:sdks": "yarn set version from sources && yarn sdks base",
"update:deps": "yarn upgrade-interactive && yarn update:sdks",
"build": "yarn tsc --build",
"clean": "yarn tsc --build --clean",
"lint": "yarn eslint ./src --ext .js --ext .ts --ext .tsx --ext .jsx",
"prepublish": "yarn build",
"test": "yarn mocha './src/**/*.test.ts'"
},
"dependencies": {
"fp-ts": "^2.16.1",
"io-ts": "^2.2.21"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/deep-equal-in-any-order": "1.0.1",
"@types/json-schema": "^7.0.15",
"@types/mocha": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@yarnpkg/pnpify": "^4.1.3",
"@yarnpkg/sdks": "^3.2.0",
"chai": "^4.3.10",
"deep-equal-in-any-order": "^1.0.28",
"depcheck": "^1.4.7",
"eslint": "^8.55.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.29.0",
"eslint-plugin-jsdoc": "^46.9.0",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"packageManager": "yarn@4.5.3"
}