-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.33 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
{
"name": "jsgram",
"version": "0.3.3",
"description": "A fast and lightweight framework for node with middleware",
"author": "Jörn Heinemann <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://gitlab.com/grammm/jsgram/jsgram.git"
},
"keywords": [
"gram",
"framework",
"routing",
"middleware"
],
"dependencies": {
"gram-route": "^1.3.1",
"parseurl": "^1.3.3"
},
"devDependencies": {
"@joernheinemann/eslint-config-typescript": "git+https://gitlab.com/joern.heinemann/eslint-config-typescript.git",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.0",
"@types/parseurl": "^1.3.1",
"chai": "^4.2.0",
"chai-http": "^4.3.0",
"eslint": "^7.25.0",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"ts-node": "^8.10.2",
"typescript": "^4.0.2"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"LICENSE",
"CHANGELOG.md",
"README.md"
],
"engines": {
"node": ">=12"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "npm run build",
"test": "mocha -r ts-node/register test/**/*Test.ts",
"coverage": "nyc -r text-summary -r lcov npm run test",
"sample": "node sample/simpleREST",
"lint": "eslint . --ext .ts"
}
}