-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
36 lines (36 loc) · 1.11 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
{
"name": "cocaine",
"version": "0.12.1-r18",
"description": "Node.js framework for Cocaine platform",
"author": "Cocaine Project <cocaine@yandex-team.ru>",
"contributors": [
"Oleg Kutkov <olegkutkov@yandex-team.ru>",
"Dmitry Unkovsky <diunko@yandex-team.ru>"
],
"homepage": "https://github.com/cocaine/cocaine-framework-nodejs",
"repository": "git://github.com/cocaine/cocaine-framework-nodejs.git",
"engines": {
"node": "0.8.0 - 4.*"
},
"dependencies": {
"debug": "*",
"hexy": "^0.2.6",
"msgpack-bin": "0.3.0-1",
"optimist": "~0.4",
"q": "1.*"
},
"devDependencies": {
"mocha": "1.20.x",
"node-uuid": "1.4.x",
"co": "*",
"chai": "*",
"msgpack-socket": "0.0.8-a2",
"babel": "*"
},
"scripts": {
"_postinstall": "rm -f node_modules/cocaine && ln -s .. node_modules/cocaine",
"__test": "node_modules/.bin/mocha --compilers js:babel/register",
"test": "ln -s .. node_modules/cocaine; mocha --compilers js:babel/register --reporter spec --timeout 600000",
"_test": "mocha --compilers js:babel/register --timeout 600000 --debug-brk"
}
}