-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
96 lines (96 loc) · 3.12 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
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "dripip",
"version": "0.0.0-dripip",
"description": "Opinionated CLI for continuous delivery of npm packages",
"main": "dist-cjs/cli/main",
"bin": "dist-cjs/cli/main.js",
"repository": "[email protected]:prisma-labs/dripip.git",
"packageManager": "[email protected]",
"author": "Jason Kuhrt <[email protected]>",
"license": "MIT",
"files": [
"src",
"dist-cjs",
"dist-esm"
],
"scripts": {
"release:stable": "yarn dripip stable",
"release:preview": "yarn dripip preview",
"release:pr": "yarn dripip pr",
"format": "prettier --write .",
"dripip": "ts-node src/cli/main",
"build": "yarn clean && yarn build:cjs && yarn build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"lint": "eslint . --ext .ts,.tsx --fix",
"lint:check": "eslint . --ext .ts,.tsx --max-warnings 0",
"clean": "rm -rf dist-cjs dist-esm node_modules/.cache",
"dev": "tsc --watch",
"type-check": "yarn tsc --noEmit",
"dev:test": "jest --watch --testPathPattern '.*/src/.*'",
"test:unit": "jest --config jest.config.unit.ts",
"test:system": "jest --testTimeout 15000 --testPathPattern '.*/tests/.*' --verbose",
"test": "jest --testTimeout 15000 --verbose",
"build:docs:toc": "doctoc README.md",
"build:docs": "yarn build:docs:toc",
"prepack": "yarn build"
},
"dependencies": {
"@octokit/rest": "^18.12.0",
"@types/debug": "^4.1.7",
"@types/parse-git-config": "^3.0.1",
"@types/parse-github-url": "^1.0.0",
"chaindown": "^0.1.0-next.2",
"chalk": "^4.1.0",
"common-tags": "^1.8.2",
"debug": "^4.3.3",
"execa": "5",
"fs-jetpack": "^4.3.1",
"isomorphic-git": "^1.8.0",
"parse-git-config": "^3.0.0",
"parse-github-url": "^1.0.2",
"request": "^2.88.2",
"simple-git": "^2.23.0",
"tslib": "^2.3.1",
"yargs": "^17.3.1"
},
"devDependencies": {
"@prisma-labs/prettier-config": "0.1.0",
"@swc/core": "1.2.198",
"@swc/helpers": "0.3.17",
"@swc/jest": "0.2.21",
"@tsconfig/node14": "1.0.2",
"@types/common-tags": "1.8.1",
"@types/eslint": "8.4.3",
"@types/jest": "27.5.2",
"@types/node": "17.0.21",
"@types/tmp": "0.2.3",
"@typescript-eslint/eslint-plugin": "5.27.1",
"@typescript-eslint/parser": "5.27.1",
"doctoc": "1.4.0",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-deprecation": "1.3.2",
"eslint-plugin-only-warn": "1.0.3",
"eslint-plugin-prefer-arrow": "1.2.3",
"eslint-plugin-simple-import-sort": "7.0.0",
"eslint-plugin-tsdoc": "0.2.16",
"jest": "27.5.1",
"jest-watch-select-projects": "2.0.0",
"jest-watch-suspend": "1.1.2",
"jest-watch-toggle-config": "2.0.1",
"jest-watch-typeahead": "1.1.0",
"konn": "0.7.0",
"prettier": "2.6.2",
"strip-ansi": "6.0.1",
"tmp": "0.2.1",
"ts-jest": "27.1.5",
"ts-node": "10.8.1",
"tsconfig-paths": "3.14.1",
"type-fest": "2.13.0",
"typescript": "4.7.3",
"typescript-snapshots-plugin": "1.7.0",
"typescript-transform-paths": "3.3.1"
},
"prettier": "@prisma-labs/prettier-config"
}