-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
56 lines (56 loc) · 1.5 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
{
"name": "nodegit-large-file-storage",
"version": "1.0.0-alpha.6",
"description": "A wrapper for NodeGit to facilitate LFS Support",
"main": "build/src/index.js",
"scripts": {
"build": "yarn lint && yarn compile",
"compile": "babel src -d build/src",
"lint": "eslint src",
"lint-full": "eslint src test/tests",
"prepublish": "yarn lint && yarn compile",
"test": "nyc mocha --require @babel/register test/runner \"test/**/*.spec.js\""
},
"repository": "[email protected]:Axosoft/nodegit-lfs.git",
"author": "Axosoft, LLC",
"license": "ISC",
"keywords": [
"node",
"git",
"lfs",
"nodegit"
],
"files": [
"build/src",
"askpass.sh"
],
"bugs": {
"url": "https://github.com/Axosoft/nodegit-lfs/issues"
},
"homepage": "https://github.com/Axosoft/nodegit-lfs#readme",
"devDependencies": {
"@babel/cli": "^7.8.3",
"@babel/core": "^7.8.3",
"@babel/plugin-transform-modules-commonjs": "^7.8.3",
"@babel/register": "^7.8.3",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-mocha": "^6.2.2",
"chai": "^4.2.0",
"jsdoc-to-markdown": "^5.0.3",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"prompt": "^1.0.0"
},
"dependencies": {
"default-shell": "^1.0.1",
"fs-extra": "^8.1.0",
"ignore": "^3.3.3",
"lodash": "^4.17.15",
"promisify-node": "^0.4.0",
"ramda": "^0.24.1",
"uuid": "^3.3.2"
}
}