-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 2 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": "chmpx",
"version": "1.0.21",
"description": "CHMPX addon library for Node.js",
"os": "linux",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"bindings": "^1.5.0",
"nan": "^2.22.0"
},
"devDependencies": {
"chai": "^4.5.0",
"mocha": "^10.8.2"
},
"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": "npm run test:chmpx",
"test:chmpx": "echo \"Test - All\" && tests/test.sh && echo \"Finished\"",
"test:chmpx:slave": "echo \"Test - chmpx slave\" && tests/test.sh chmpx_slave && echo \"Finished\"",
"test:chmpx:server": "echo \"Test - chmpx server\" && tests/test.sh chmpx_server && echo \"Finished\""
},
"repository": {
"type": "git",
"url": "git@github.com:yahoojapan/chmpx_nodejs.git"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"antpickax",
"chmpx",
"messaging",
"message-communication",
"server-client-communication",
"cluster",
"consistent",
"inprocess-data-exchange",
"autoscaling",
"multiplex"
],
"bugs": {
"url": "http://github.com/yahoojapan/chmpx_nodejs/issues",
"email": "antpickax-support@mail.yahoo.co.jp"
},
"author": "Takeshi Nakatani <ggtakec@gmail.com> (https://github.com/ggtakec)",
"contributors": [
"Hirotaka Wakabayashi <hiwakaba@yahoo-corp.jp> (https://github.com/hiwakaba)"
],
"license": "MIT"
}