-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.59 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
{
"name": "@buggyorg/portgraph2kgraph",
"version": "0.1.9",
"description": "Converter for buggy port graphs into the kgraph format that can be used to create graph visualizations via KLay.",
"main": "lib/api.js",
"bin": {
"portgraph2kgraph": "lib/cli.js"
},
"scripts": {
"test": "standard src/**/*.js && mocha --compilers js:babel-register",
"build": "babel src -d lib",
"doc": "jsdoc -c .jsdoc.json && cp -r doc jsdoc/@buggyorg/portgraph2kgraph/`node -e \"console.log(require('./package.json').version)\"`",
"publish-docs": "npm run doc && (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/@buggyorg/portgraph2kgraph/`node -e \"console.log(require('./package.json').version)\"` -b gh-pages && git push -f origin gh-pages:gh-pages && git branch -D gh-pages && git reset HEAD~1",
"prepublish": "babel src -d lib"
},
"keywords": [
"Buggy"
],
"author": "Maximilian Klein",
"license": "MIT",
"dependencies": {
"@buggyorg/graphtools": "^0.4.0-pre.35",
"cli-ext": "^1.1.0",
"get-stdin": "^5.0.1",
"lodash": "^4.16.4",
"yargs": "^6.3.0"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.4.1",
"jsdoc": "^3.4.0",
"mocha": "^2.3.3",
"standard": "^6.0.8"
}
}