forked from steveukx/git-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.74 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
{
"name": "simple-git",
"description": "Simple GIT interface for node.js",
"version": "2.48.0",
"author": "Steve King <[email protected]>",
"contributors": [
{
"name": "Steve King",
"email": "[email protected]"
}
],
"funding": {
"type": "github",
"url": "https://github.com/sponsors/steveukx/"
},
"dependencies": {
"@kwsites/file-exists": "^1.1.1",
"@kwsites/promise-deferred": "^1.1.1",
"debug": "^4.3.2"
},
"devDependencies": {
"@babel/core": "^7.12.9",
"@babel/preset-env": "^7.12.7",
"@babel/preset-typescript": "^7.12.7",
"@kwsites/promise-result": "^1.1.0",
"@types/debug": "^4.1.5",
"@types/jest": "^26.0.15",
"@types/node": "^14.14.10",
"babel-jest": "^26.6.3",
"babel-plugin-module-resolver": "^4.0.0",
"jest": "^26.6.3",
"ts-node": "^9.0.0",
"typescript": "^4.1.2"
},
"keywords": [
"git",
"source control",
"vcs"
],
"license": "MIT",
"repository": "git://github.com/steveukx/git-js.git",
"main": "./src/index.js",
"types": "./typings/index.d.ts",
"files": [
"promise.js",
"promise.d.ts",
"src/**/*.d.ts",
"src/**/*.js",
"src/**/*.js.map",
"typings/"
],
"scripts": {
"clean": "git clean -fxd -e .idea -e node_modules",
"tsc": "tsc",
"build": "tsc --build",
"build:clean": "yarn clean && yarn build",
"build:release": "tsc -p tsconfig.release.json",
"test:consumer": "tsc -p test/consumer/tsconfig-standard.json && tsc -p test/consumer/tsconfig-promise.json",
"test:jest": "jest --coverage",
"test": "yarn test:consumer && yarn test:jest",
"preversion": "yarn clean && yarn test && yarn build:release",
"postversion": "npm publish && git push && git push --tags"
}
}