-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
36
37
38
39
40
41
42
43
44
45
{
"name": "c3-exporter",
"version": "1.0.0",
"description": "Export c3 charts to png",
"main": "index.js",
"scripts": {
"lint": "standard index.js",
"release:major": "changelog -M && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version major && git push origin && git push origin --tags && npm publish",
"release:minor": "changelog -m && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version minor && git push origin && git push origin --tags && npm publish",
"release:patch": "changelog -p && git add CHANGELOG.md && git commit -m 'updated CHANGELOG.md' && npm version patch && git push origin && git push origin --tags && npm publish"
},
"engines": {
"node": ">=7"
},
"repository": {
"type": "git",
"url": "https://github.com/lgaticaq/c3-exporter.git"
},
"keywords": [
"c3",
"export",
"phantomjs"
],
"author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lgaticaq/c3-exporter/issues"
},
"homepage": "https://github.com/lgaticaq/c3-exporter#readme",
"dependencies": {
"c3": "^0.7.0",
"d3": "^4.0.0",
"phantomjs-prebuilt": "^2.1.14"
},
"devDependencies": {
"generate-changelog": "1.8.0",
"standard": "11.0.1"
},
"standard": {
"env": {
"mocha": true
}
},
"tonicExampleFilename": "example.js"
}