-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1.41 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
{
"name": "@buggyorg/library-client",
"version": "0.4.2",
"description": "Client implementation for Buggy library access.",
"main": "./lib/client.js",
"scripts": {
"test": "standard src/**/*.js && mocha --compilers js:babel-register",
"build": "babel src -d lib",
"prepublish": "babel src -d lib",
"doc": "jsdoc -c .jsdoc.json",
"publish-docs": "jsdoc -c .jsdoc.json && (git diff --exit-code > /dev/null || (echo 'No clean head. Please commit or stash before pushing docs.' && exit 1)) && (git diff --cached --exit-code > /dev/null || (echo 'No clean head. Please commit or stash before pushing docs.' && exit 1)) && git add -f jsdoc/* && git commit -m '(doc) New documentation.' && git subtree split --prefix jsdoc -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-pages && git reset HEAD~1"
},
"author": "Maximilian Klein",
"license": "MIT",
"devDependencies": {
"babel-cli": "^6.6.5",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"chai": "^3.5.0",
"chai-as-promised": "^5.3.0",
"chai-http": "^3.0.0",
"jsdoc": "^3.4.0",
"mocha": "^2.4.5",
"standard": "^6.0.8"
},
"dependencies": {
"@buggyorg/graphtools": "^0.4.0-pre.7",
"@buggyorg/library-fileserver": "0.4.1",
"lodash": "^4.13.1",
"portfinder": "^1.0.5",
"request": "^2.78.0",
"request-promise-native": "^1.0.2",
"url-join": "^1.1.0"
}
}