-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.08 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "js-restful-express",
"version": "3.1.0",
"description": "Create a RESTful service with ES6 decorators for your express based node.js application.",
"main": "src/js-restful-express.js",
"typings": "./src/js-restful-express.d.ts",
"scripts": {
"pretest": "tsc",
"test": "istanbul cover node_modules/mocha/bin/_mocha --report lcov -x '*.spec.*' -- -c --check-leaks --require ts-node/register --require core-js --recursive --reporter spec src/**/*.spec.ts",
"quicktest": "mocha -c --check-leaks --require ts-node/register --recursive --reporter spec src/**/*.spec.ts",
"prepublish": "tsc",
"docs": "jsdoc -c config/jsdoc-conf.json -r src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mseemann/js-restful-express.git"
},
"keywords": [
"node",
"rest",
"express",
"get",
"post",
"put",
"delete",
"path",
"javax.ws.rs",
"es6 decorator"
],
"author": "Michael Seemann",
"license": "MIT",
"peerDependencies": {},
"dependencies": {
"express": "^4.13.4",
"js-restful": "^2.0.0",
"winston": "^2.2.0"
},
"devDependencies": {
"@types/body-parser": "1.16.1",
"@types/chai": "^3.4.34",
"@types/express": "^4.0.33",
"@types/express-serve-static-core": "^4.0.36",
"@types/method-override": "0.0.29",
"@types/mime": "0.0.29",
"@types/mocha": "^2.2.32",
"@types/node": "^8.0.9",
"@types/reflect-metadata": "0.0.5",
"@types/serve-static": "^1.7.31",
"@types/superagent": "^2.0.34",
"@types/supertest": "^2.0.0",
"@types/winston": "2.3.5",
"chai": "^3.5.0",
"codeclimate-test-reporter": "^0.4.0",
"core-js": "^2.4.1",
"istanbul": "^0.4.3",
"jsdoc": "^3.4.0",
"mocha": "^3.1.2",
"mocha-lcov-reporter": "^1.2.0",
"pug": "^2.0.0-alpha6",
"supertest": "^3.0.0",
"ts-node": "^3.0.0",
"tslint": "4.5.1",
"typescript": "^2.2.1",
"typings": "2.1.0"
},
"bugs": {
"url": "https://github.com/mseemann/js-restful-express/issues"
},
"homepage": "https://github.com/mseemann/js-restful-express#readme"
}