forked from adaltas/node-hbase
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.86 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
59
60
{
"name": "hbase",
"version": "0.6.1",
"description": "HBase client using the REST connector",
"author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
"license": "MIT",
"contributors": [
"David Worms <david@adaltas.com> (https://www.adaltas.com)",
"Xavier Hermand <xavier@adaltas.com> (https://www.adaltas.com)",
"Michael Kurze (https://github.com/michaelku)",
"Michal Taborsky (https://github.com/whizz)",
"Marc Trudel (https://github.com/stelcheck)",
"Krisztina Hirth (https://github.com/yellowbrickc)"
],
"main": "./lib/index",
"engines": {
"node": ">= 0.1.90"
},
"coffeelintConfig": {
"indentation": {
"level": "error",
"value": 2
},
"line_endings": {
"level": "error",
"value": "unix"
},
"max_line_length": {
"level": "ignore"
}
},
"optionalDependencies": {
"krb5": "^0.5.4"
},
"devDependencies": {
"coffeescript": "^2.5.1",
"each": "^1.2.2",
"mocha": "^7.1.0",
"should": "^13.2.3"
},
"bugs": {
"url": "https://github.com/adaltas/node-hbase/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/adaltas/node-hbase.git"
},
"homepage": "https://github.com/adaltas/node-hbase",
"scripts": {
"preversion": "grep '## Trunk' CHANGELOG.md && rm -rf lib && npm test",
"version": "version=`grep '^ \"version\": ' package.json | sed 's/.*\"\\([0-9\\.]*\\)\".*/\\1/'` && sed -i \"s/## Trunk/## Version $version/\" CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"patch": "npm version patch -m 'Bump to version %s'",
"minor": "npm version minor -m 'Bump to version %s'",
"major": "npm version major -m 'Bump to version %s'",
"coffee": "coffee -b -o lib src",
"pretest": "coffee -b -o lib src",
"test": "mocha test/**/*.coffee"
}
}