-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.55 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
{
"name": "@buggyorg/codegen",
"version": "0.1.0",
"description": "Source code generation out of buggy graphs.",
"main": "api.js",
"scripts": {
"test": "standard src/**/*.js && mocha --compilers js:babel-register",
"doc": "jsdoc -c .jsdoc.json",
"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/codegen/`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",
"build": "babel src -d lib",
"prepublish": "babel src -d lib"
},
"keywords": [
"Code-Generation"
],
"author": "Maximilian Klein",
"license": "MIT",
"dependencies": {
"@buggyorg/graphtools": "^0.4.0-pre.39",
"babel-core": "^6.22.1",
"cli-ext": "^1.1.0",
"debug": "^2.6.3",
"glob": "^7.1.1",
"map-keys-deep-lodash": "^0.2.0",
"object-hash": "^1.1.5",
"promise-all": "^1.0.0",
"yargs": "^6.6.0"
},
"devDependencies": {
"babel-cli": "^6.10.1",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"jsdoc": "^3.4.3",
"mocha": "^2.5.3",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"standard": "^7.1.2"
}
}