-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 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
{
"name": "@sidekick/git-helpers",
"version": "1.2.0",
"description": "git helpers that work with the git CLI. Probably only useful if you've got the same constraints as SK: x-platform without native deps",
"main": "dist/sidekick-git-helpers.js",
"directories": {
"test": "test"
},
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"build": "babel --out-dir dist *.js lib/*.js",
"prepublish": "npm run -s build",
"test": "mocha --compilers js:babel-register"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sidekickcode/sidekick-git-helpers.git"
},
"files": [
"dist"
],
"keywords": [
"git"
],
"author": "Tim Ruffles <timruffles@googlemail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/sidekickcode/sidekick-git-helpers/issues"
},
"homepage": "https://github.com/sidekickcode/sidekick-git-helpers#readme",
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"mocha": "^2.4.5",
"pprint": "0.0.1",
"proxyquire": "^1.7.4",
"shelljs": "^0.6.0"
},
"dependencies": {
"bluebird": "~2.9.14",
"lodash": "^3.10.1"
}
}