-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
57 lines (57 loc) · 1.8 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
{
"name": "k2hdkc",
"version": "1.0.10",
"description": "K2HDKC addon library for Node.js",
"os": "linux",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.19.0"
},
"devDependencies": {
"chai": "^4.4.1",
"mocha": "^10.2.0"
},
"scripts": {
"build": "npm run build:before && npm run build:configure && npm run build:rebuild && npm run build:linkdir && npm run build:after",
"build:before": "echo \"Build - Start\"",
"build:configure": "if [ -f src/binding.gyp ]; then cd src; fi && node-gyp configure --verbose --release --target_arch=x64 --coverage=true",
"build:rebuild": "if [ -f src/binding.gyp ]; then cd src; fi && node-gyp rebuild --verbose --release --target_arch=x64 --coverage=true",
"build:linkdir": "if [ ! -f build -a ! -s build ]; then ln -s src/build .; fi",
"build:after": "echo \"Build - Succeed\"",
"install": "npm run build",
"test": "npm run test:all",
"test:all": "echo \"Test - k2hdkc all\" && tests/test.sh k2hdkc && echo \"Finished\"",
"test:k2hdkc": "echo \"Test - k2hdkc k2hdkc\" && tests/test.sh k2hdkc && echo \"Finished\""
},
"repository": {
"type": "git",
"url": "[email protected]:yahoojapan/k2hdkc_nodejs.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"antpickax",
"k2hdkc",
"nosql",
"kvs",
"distributed",
"transaction",
"database",
"queue",
"in-memory"
],
"bugs": {
"url": "http://github.com/yahoojapan/k2hdkc_nodejs/issues",
"email": "[email protected]"
},
"author": "Takeshi Nakatani <[email protected]> (https://github.com/ggtakec)",
"contributors": [
"Hirotaka Wakabayashi <[email protected]> (https://github.com/hiwakaba)"
],
"license": "MIT"
}