forked from NutritionMate/Nutrition.Information.Api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.44 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
{
"name": "nutrition.information.api",
"version": "1.0.0",
"description": "This is an API to retrieve nutritional information about a given item of food.",
"directories": {
"doc": "docs"
},
"scripts": {
"lint": "tslint --project ./ --typecheck",
"build": "tsc",
"test": "npm run-script lint && istanbul cover -e .ts -x '*.spec.ts' _mocha -- --opts mocha.opts && istanbul check-coverage --statements 100 --functions 100 --branches 100 --lines 100",
"test:integration": "cucumberjs --compiler ts:ts-node/register test/component/feature/**/*.feature"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NutritionMate/Nutrition.Information.Api.git"
},
"author": "Nutrition Mate",
"license": "MIT",
"bugs": {
"url": "https://github.com/NutritionMate/Nutrition.Information.Api/issues"
},
"homepage": "https://github.com/NutritionMate/Nutrition.Information.Api#readme",
"devDependencies": {
"@types/chai": "3.5.2",
"@types/cucumber": "2.0.1",
"@types/mocha": "2.2.41",
"@types/node": "7.0.29",
"@types/request": "0.0.44",
"@types/request-promise": "4.1.34",
"@types/sinon": "2.3.1",
"chai": "4.0.2",
"cucumber": "1.3.1",
"cucumber-tsflow": "1.1.2",
"istanbul": "1.1.0-alpha.1",
"mocha": "3.4.1",
"request": "2.81.0",
"request-promise": "4.2.1",
"sinon": "2.3.4",
"ts-node": "3.0.6",
"tslint": "4.4.2",
"typescript": "2.3.4"
}
}