-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.19 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
{
"name": "protocol-service",
"version": "0.0.1",
"description": "An API service for the Backfeed protocol",
"author": "Yaniv Keinan",
"license": "GPL",
"private": false,
"scripts": {
"test": "mocha test",
"evaluation": "mocha test/evaluation.spec.js",
"contribution": "mocha test/contribution.spec.js",
"localtest": "mocha test",
"sanity": "mocha test/basicApi.spec.js",
"endBidding": "mocha test/endBidding.spec.js",
"protocol": "mocha test/ut.protocol.spec.js",
"elad": "mocha test/protocol.spec.js",
"dmag": "mocha test/unit/dmag.spec.js -w",
"idmag": "mocha test/integration/dmag.spec.js",
"start": "npm run localtest"
},
"repository": {
"type": "git",
"url": "git://github.com/backfeed/protocol-service"
},
"dependencies": {
"serverless-cors-plugin": "0.3.0",
"serverless-optimizer-plugin": "1.0.0",
"serverless-resources-validation-plugin": "0.2.0",
"serverless-serve": "1.5.2"
},
"devDependencies": {
"chai": "3.4.1",
"chakram": "1.2.1",
"decimal.js": "5.0.3",
"mocha": "2.3.4",
"promise": "7.1.1",
"serverless-helpers-js": "0.0.3",
"underscore": "1.8.3",
"validator": "5.1.0"
}
}