-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 2.04 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@buggyorg/graphtools",
"version": "0.4.0-pre.36",
"description": "Tools for processing buggy graphs.",
"main": "lib/api.js",
"scripts": {
"test": "nyc mocha --recursive --compilers js:babel-register -R min --timeout 4000 && standard src/**/*.js",
"build": "rm -rf lib && babel src -d lib",
"doc": "jsdoc -c .jsdoc.json && cp -r doc jsdoc/@buggyorg/graphtools/`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/graphtools/`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": "rm -rf lib && babel src -d lib",
"postpublish": "npm run publish-docs",
"report": "nyc report",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"Buggy"
],
"author": "Maximilian Klein",
"license": "MIT",
"nyc": {
"include": [
"**/src/**/*.js",
"**/test/**/*.js"
],
"reporter": [
"html",
"lcov",
"text-summary"
]
},
"dependencies": {
"cuid": "^1.3.8",
"debug": "^2.2.0",
"deprecate": "^0.1.0",
"json-query": "^2.1.0",
"lodash": "^4.6.1",
"object-hash": "^1.1.2",
"omit-deep-lodash": "^0.8.0",
"semver": "^5.3.0",
"set-ops": "^1.0.0",
"stack-trace": "0.0.9"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.4.1",
"coveralls": "^2.12.0",
"jsdoc": "^3.4.0",
"mocha": "^2.3.3",
"nyc": "^10.1.2",
"semver": "^5.2.0",
"sinon": "^1.17.3",
"sinon-chai": "^2.8.0",
"standard": "^10.0.1"
}
}