-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
59 lines (59 loc) · 1.58 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
{
"name": "dugite-extra",
"version": "0.1.17",
"description": "High-level Git commands for dugite.",
"main": "lib/index",
"typings": "lib/index",
"engines": {
"node": ">=14"
},
"scripts": {
"build": "tsc && tslint -c ./tslint.json --project ./tsconfig.json",
"test": "cross-env USE_LOCAL_GIT=true mocha src/**/*.spec.ts",
"prepare": "npm run build && npm run test",
"test:watch": "cross-env USE_LOCAL_GIT=true mocha -w src/**/*.spec.ts",
"test:ssh": "cross-env GIT_OVER_SSH_TEST=true mocha src/**/*.spec.ts",
"clean": "rimraf ./lib",
"build:watch": "tsc -w",
"clean:all": "rimraf ./lib && rimraf ./node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/TypeFox/dugite-extra"
},
"bugs": {
"url": "https://github.com/TypeFox/dugite-extra/issues"
},
"homepage": "https://github.com/TypeFox/dugite-extra",
"files": [
"lib",
"src"
],
"author": "",
"license": "MIT",
"dependencies": {
"byline": "^5.0.0",
"dugite-no-gpl": "^2.0.0",
"find-git-exec": "^0.0.4",
"upath": "^2.0.1"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.6",
"@types/temp": "^0.9.1",
"chai": "^4.3.4",
"concurrently": "^6.3.0",
"cross-env": "^7.0.3",
"fs-extra": "^10.0.0",
"mocha": "9.1.3",
"node-ssh": "^12.0.1",
"rimraf": "^3.0.0",
"temp": "^0.9.4",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"tslint-no-unused-expression-chai": "^0.1.4",
"typescript": "~4.4.4"
}
}