-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.16 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
{
"name": "rest-api-framework",
"version": "0.2.0",
"description": "Framework for building REST API with TypeScript support",
"main": "api.js",
"types": "types",
"engines": {
"node": ">=12.9"
},
"scripts": {
"test": "nyc --reporter=html mocha",
"report-coverage": "nyc report --reporter=text-lcov > coverage.lcov",
"ts-lint": "dtslint types",
"lint": "eslint --no-ignore --fix --config .eslintrc.json api.js ./**/*.js"
},
"author": "Roshan Gade <[email protected]>",
"homepage": "https://github.com/roshangade/rest-api-framework",
"keywords": [
"rest-api",
"rest-api-framework",
"json-api",
"promise",
"promise-api",
"framework",
"javascript",
"deferred-tasks",
"delayed-jobs"
],
"repository": {
"type": "git",
"url": "https://github.com/roshangade/rest-api-framework.git"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^12.x",
"chai": "^4.x",
"dtslint": "^3.x",
"eslint": "^6.x",
"eslint-config-google": "^0.14.x",
"mocha": "^7.x",
"node-mocks-http": "roshangade/node-mocks-http",
"nyc": "^15.x",
"sinon": "^9.x"
},
"dependencies": {}
}