-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·55 lines (55 loc) · 3.26 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
{
"name": "local-stamp",
"version": "0.0.1",
"description": "Utility for testing components interconnecting its channels",
"main": "src/index.coffee",
"directories": {
"test": "tests"
},
"scripts": {
"clean": "if [ $(find ./ -name \"*.js\" | grep -c -v node_modules) -gt 0 ]; then rm $(find ./ -name \"*.js\" | grep -v node_modules); fi",
"nyan": "rm -f *.js && node_modules/.bin/mocha --reporter nyan --compilers coffee:coffee-script/register tests/*.test.coffee",
"old-spec": "rm -f *.js && node_modules/.bin/mocha --reporter spec --compilers coffee:coffee-script/register tests/*.test.coffee",
"spec": "rm -f *.js && node_modules/.bin/mocha --require coffee-coverage/register-istanbul --compilers coffee:coffee-script/register --reporter spec tests/*.test.coffee && node_modules/.bin/istanbul report text-summary lcov cobertura",
"aws-spec": "rm -f *.js && node_modules/.bin/mocha --reporter spec --compilers coffee:coffee-script/register tests-aws/*.test.coffee",
"lint": "node_modules/.bin/coffeelint src tests",
"doc": "node_modules/.bin/docco src/*.coffee",
"test": "rm -f *.js && node_modules/.bin/mocha --reporter xunit --compilers coffee:coffee-script/register tests/*.test.coffee > reports/TESTS-xunit.xml",
"ftest": "./functional-tests/test.sh",
"htmlcov": "./node_modules/.bin/coffeeCoverage --initfile build/init.js --exclude node_modules,.git,tests --path abbr . . && node_modules/.bin/mocha --require build/init.js --reporter html-cov --compilers coffee:coffee-script/register tests/*.test.coffee > reports/coverage.html;if [ $(find ./ -name \"*.js\" | grep -c -v node_modules) -gt 0 ]; then rm $(find ./ -name \"*.js\" | grep -v node_modules); fi",
"lcov": "./node_modules/.bin/coffeeCoverage --initfile build/init.js --exclude node_modules,.git,tests,fr --path relative . . && node_modules/.bin/mocha --require build/init.js --reporter mocha-lcov-reporter --compilers coffee:coffee-script/register tests/*.test.coffee > reports/lcov.aux && sed -e \"s#SF:lib#SF:$PWD/lib#g\" reports/lcov.aux > reports/lcov.info;if [ $(find ./ -name \"*.js\" | grep -c -v node_modules) -gt 0 ]; then rm $(find ./ -name \"*.js\" | grep -v node_modules); fi"
},
"repository": {
"type": "git",
"url": "[email protected]:ECloud/local-stamp.git"
},
"author": "ITI",
"license": "ISC",
"dependencies": {
"admission": "git+ssh://[email protected]:ECloud/admission.git",
"coffee-script": "1.10.0",
"cors": "2.8.4",
"dockerode": "2.3.1",
"gateway-component": "git+ssh://[email protected]:ECloud/gateway-component.git#master",
"hashring": "3.2.0",
"k-logger": "git+ssh://[email protected]:ECloud/k-logger.git#master",
"k-sockets": "git+ssh://[email protected]:ECloud/k-sockets.git#master",
"k-utils": "git+ssh://[email protected]:ECloud/k-utils.git#master",
"lodash": "4.17.10",
"moment": "2.22.1",
"multer": "1.3.0",
"rmdir": "1.2.0",
"runtime-agent": "git+ssh://[email protected]:ECloud/runtime-agent.git#master",
"socket.io": "2.0.2",
"socket.io-client": "2.0.4",
"supertest": "1.1.0"
},
"devDependencies": {
"component": "git+ssh://[email protected]:ECloud/component.git#master",
"coffee-coverage": "1.0.1",
"coffeelint": "1.12.1",
"istanbul": "0.4.2",
"mocha": "2.2.4",
"should": "6.0.1"
}
}