UNPKG

1.63 kBJSONView Raw
1{
2 "name": "simple-git",
3 "description": "Simple GIT interface for node.js",
4 "version": "2.10.0",
5 "author": "Steve King <steve@mydev.co>",
6 "contributors": [
7 {
8 "name": "Steve King",
9 "email": "steve@mydev.co"
10 }
11 ],
12 "dependencies": {
13 "@kwsites/file-exists": "^1.1.1",
14 "debug": "^4.1.1"
15 },
16 "devDependencies": {
17 "@babel/core": "^7.10.1",
18 "@babel/preset-env": "^7.10.1",
19 "@babel/preset-typescript": "^7.10.1",
20 "@kwsites/jestify-node-unit": "^1.0.1",
21 "@types/debug": "^4.1.5",
22 "@types/jest": "^25.2.3",
23 "@types/node": "^13.11.1",
24 "babel-jest": "^26.0.1",
25 "babel-plugin-module-resolver": "^4.0.0",
26 "jest": "^25.3.0",
27 "sinon": "^7.3.2",
28 "ts-node": "^8.10.2",
29 "typescript": "^3.8.3"
30 },
31 "keywords": [
32 "git",
33 "source control",
34 "vcs"
35 ],
36 "license": "MIT",
37 "repository": "git://github.com/steveukx/git-js.git",
38 "main": "./src/index.js",
39 "types": "./typings/index.d.ts",
40 "files": [
41 "promise.js",
42 "promise.d.ts",
43 "src/**/*.d.ts",
44 "src/**/*.js",
45 "src/**/*.js.map",
46 "typings/"
47 ],
48 "scripts": {
49 "clean": "git clean -fxd -e .idea -e node_modules",
50 "tsc": "tsc",
51 "build": "tsc --build",
52 "build:clean": "yarn clean && yarn build",
53 "pretest": "yarn build",
54 "test": "tsc -p test/consumer/tsconfig-standard.json && tsc -p test/consumer/tsconfig-promise.json && jest --coverage",
55 "preversion": "yarn test",
56 "postversion": "npm publish && git push && git push --tags"
57 },
58 "jest": {
59 "testMatch": [
60 "**/test/**/test-*.js",
61 "**/test/**/*.spec.js"
62 ]
63 }
64}