-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.02 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
{
"name": "parsind",
"version": "0.2.0",
"author": "Ram Hejazi",
"description": "A HTTP resource manager and controller-autoloader!",
"main": "index.js",
"scripts": {
"test": "nyc -x example --reporter=text --reporter=html ./node_modules/mocha/bin/mocha ./test",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"license": "MIT",
"keywords": [
"express",
"controller",
"resource",
"router",
"route",
"autoloader",
"http",
"rest",
"restful"
],
"repository": {
"type": "git",
"url": "https://github.com/ramhejazi/parsind.git"
},
"bugs": {
"url": "https://github.com/ramhejazi/parsind/issues"
},
"dependencies": {
"camel-case": "^4.1.2",
"global": "^4.4.0",
"pascal-case": "^3.1.2",
"pluralize": "^8.0.0",
"snake-case": "^3.0.4",
"typescript-language-server": "^0.8.1"
},
"devDependencies": {
"coveralls": "^3.1.1",
"express": "^4.17.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"supertest": "^6.1.6"
}
}