forked from transcend-io/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.13 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.13 KB
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
{
"author": "Transcend Inc.",
"name": "@transcend-io/cli",
"description": "Small package containing useful typescript utilities.",
"version": "4.2.1",
"homepage": "https://github.com/transcend-io/cli",
"repository": {
"type": "git",
"url": "https://github.com/transcend-io/cli.git"
},
"license": "MIT",
"main": "build/index",
"bin": {
"tr-discover-silos": "./build/cli-discover-silos.js",
"tr-pull": "./build/cli-pull.js",
"tr-push": "./build/cli-push.js"
},
"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 pnpify tsc --build",
"clean": "yarn pnpify tsc --build --clean",
"lint": "yarn pnpify eslint src --ext .ts",
"prepublish": "yarn build",
"test": "yarn pnpify mocha './src/**/*.test.ts'"
},
"dependencies": {
"@transcend-io/privacy-types": "^2.0.1",
"@transcend-io/type-utils": "^1.0.5",
"bluebird": "^3.7.2",
"colors": "^1.4.0",
"fast-glob": "^3.2.11",
"fp-ts": "^2.11.8",
"graphql": "^16.3.0",
"graphql-request": "^4.0.0",
"io-ts": "^2.2.16",
"js-yaml": "^4.1.0",
"lodash": "^4.17.21",
"yargs-parser": "^21.0.0"
},
"devDependencies": {
"@types/bluebird": "^3.5.36",
"@types/chai": "^4.3.0",
"@types/colors": "^1.2.1",
"@types/js-yaml": "^4.0.5",
"@types/lodash": "^4.14.179",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.21",
"@types/yargs-parser": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@yarnpkg/pnpify": "^3.1.1",
"@yarnpkg/sdks": "^2.6.0",
"chai": "^4.3.6",
"depcheck": "^1.4.3",
"eslint": "^8.10.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsdoc": "^37.9.4",
"mocha": "^9.2.1",
"prettier": "^2.5.1",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"packageManager": "yarn@3.2.0"
}