forked from prisma-labs/dripip
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
116 lines (116 loc) · 3.23 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "dripip",
"version": "0.0.0-dripip",
"description": "Opinionated CLI for continuous delivery of npm packages",
"main": "dist/cli/main",
"bin": {
"dripip": "dist/cli/main.js"
},
"repository": "[email protected]:prisma-labs/dripip.git",
"author": "Jason Kuhrt <[email protected]>",
"license": "MIT",
"private": false,
"files": [
"/src",
"/dist",
"/oclif.manifest.json"
],
"scripts": {
"release:stable": "yarn -s dripip stable",
"release:preview": "yarn -s dripip preview",
"release:pr": "yarn -s dripip pr",
"format": "prettier --write .",
"dripip": "ts-node src/cli/main",
"clean": "rm -rf dist oclif.manifest.json",
"build:oclif": "oclif-dev manifest",
"build": "yarn -s build:oclif && tsc",
"dev": "tsc --watch",
"dev:test": "jest --watch --testPathPattern '.*/src/.*'",
"test:unit": "jest --testPathPattern '.*/src/.*' --verbose",
"test:system": "jest --testTimeout 15000 --testPathPattern '.*/tests/.*' --verbose",
"test": "jest --testTimeout 15000 --verbose",
"build:docs:toc": "doctoc README.md",
"build:docs:commands": "oclif-dev readme",
"build:docs": "yarn -s build:docs:commands && yarn -s build:docs:toc",
"postpublish": "yarn -s run clean",
"prepublishOnly": "yarn -s run build"
},
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/errors": "^1.3.4",
"@oclif/plugin-help": "^3.2.0",
"@octokit/rest": "^18.0.9",
"@types/debug": "^4.1.5",
"@types/parse-git-config": "^3.0.0",
"@types/parse-github-url": "^1.0.0",
"chaindown": "https://github.com/jsoref/chaindown/releases/download/v0.1.0-next.1/chaindown-v0.1.0-next.1.tgz",
"chalk": "^4.1.0",
"common-tags": "^1.8.0",
"debug": "^4.3.1",
"fs-jetpack": "^4.1.0",
"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"
},
"devDependencies": {
"@oclif/dev-cli": "1.24.1",
"@prisma-labs/prettier-config": "0.1.0",
"@types/common-tags": "1.8.0",
"@types/jest": "26.0.15",
"@types/node": "14.14.9",
"@types/tmp": "0.2.0",
"doctoc": "1.4.0",
"jest": "26.6.3",
"jest-watch-suspend": "1.1.2",
"jest-watch-toggle-config": "2.0.1",
"jest-watch-typeahead": "0.6.1",
"prettier": "2.2.0",
"strip-ansi": "6.0.0",
"tmp": "0.2.1",
"ts-jest": "26.4.4",
"ts-node": "9.0.0",
"type-fest": "0.19.0",
"typescript": "4.1.2"
},
"prettier": "@prisma-labs/prettier-config",
"oclif": {
"commands": "./dist/cli/commands",
"bin": "dripip",
"plugins": [
"@oclif/plugin-help"
]
},
"jest": {
"preset": "ts-jest",
"watchPlugins": [
"jest-watch-suspend",
"jest-watch-typeahead/filename",
"jest-watch-typeahead/testname",
[
"jest-watch-toggle-config",
{
"setting": "verbose"
}
]
],
"watchPathIgnorePatterns": [
"<rootDir>/dist/"
],
"setupFiles": [
"./tests/_setup.ts"
],
"globals": {
"ts-jest": {
"tsconfig": "tests/tsconfig.json",
"diagnostics": {
"ignoreCodes": [
151001
]
}
}
}
}
}