-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.13 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 2.13 KB
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
{
"name": "nodegit-lfs",
"version": "0.0.11",
"description": "A wrapper for NodeGit to facilitate LFS support",
"main": "build/src/index.js",
"scripts": {
"build": "yarn eslint && yarn compile",
"compile": "\"node_modules/.bin/babel\" src -d build/src",
"eslint": "\"node_modules/.bin/eslint\" src",
"eslint-full": "\"node_modules/.bin/eslint\" src test/tests",
"eslint-quick-fix": "\"node_modules/.bin/eslint\" src test/tests --fix",
"pretest": "yarn eslint",
"prepublish": "yarn eslint && yarn compile",
"src-watch": "\"node_modules/.bin/babel\" src -d build/src -w",
"test": "nyc mocha --compilers js:babel-core/register --expose-gc test/runner \"test/**/*.spec.js\"",
"test-debug": "mocha --debug-brk --compilers js:babel-core/register --expose-gc test/runner \"test/**/*.spec.js\"",
"test-watch": "mocha --compilers js:babel-core/register --expose-gc --watch test/runner \"test/**/*.spec.js\""
},
"repository": "git@github.com:Axosoft/nodegit-lfs.git",
"author": "Axosoft, LLC",
"license": "ISC",
"keywords": [
"node",
"git",
"lfs",
"nodegit"
],
"files": [
"build/src"
],
"bugs": {
"url": "https://github.com/Axosoft/nodegit-lfs/issues"
},
"homepage": "https://github.com/Axosoft/nodegit-lfs#readme",
"peerDependencies": {
"nodegit": ">=0.20.1"
},
"devDependencies": {
"chai": "^4.0.2",
"eslint": "^3.19.0",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-chai-friendly": "^0.4.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-mocha": "^4.11.0",
"jsdoc-to-markdown": "^3.0.0",
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"prompt": "^1.0.0",
"sinon": "^3.2.1",
"sinon-chai": "^2.13.0"
},
"dependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"default-shell": "^1.0.1",
"fs-extra": "^3.0.1",
"ignore": "^3.3.3",
"node-pty": "github:implausible/node-pty#57f5f4ef6b751ffcd056fb6f2b626a0a0d804301",
"promisify-node": "^0.4.0",
"ramda": "^0.24.1",
"tmp": "^0.0.33"
}
}