-
Notifications
You must be signed in to change notification settings - Fork 73
/
package.json
74 lines (74 loc) · 2.15 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "hbase",
"version": "0.6.1",
"description": "HBase client using the REST connector",
"author": "David Worms <[email protected]> (https://www.adaltas.com)",
"license": "MIT",
"contributors": [
"David Worms <[email protected]> (https://www.adaltas.com)",
"Xavier Hermand <[email protected]> (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": {
"@types/node": "^16.9.1",
"coffeescript": "^2.5.1",
"each": "^1.2.2",
"mocha": "^7.1.0",
"should": "^13.2.3",
"tslint": "^6.1.3",
"typescript": "^4.4.2"
},
"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",
"mocha": {
"throw-deprecation": true,
"require": [
"should",
"coffeescript/register"
],
"inline-diffs": true,
"timeout": 40000,
"reporter": "spec",
"recursive": true
},
"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"
}
}