-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.05 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
71
72
73
74
{
"name": "node-badger",
"version": "1.2.8",
"description": "node-badger a framework for building node applications.",
"main": "dist/bin/main.js",
"scripts": {
"setup": "npm install",
"build": "tsc && node dist/src/main.js",
"build-watch": "tsc --watch",
"typedoc": "typedoc --out ./docs --mode modules --tsconfig ./tsconfig.json ./dev/src/",
"test": "mocha --timeout 5000 --recursive -r ts-node/register tests/**/*.test.ts",
"nyc-coverage": "nyc --reporter=html --reporter=text -t coverage --report-dir coverage/summary mocha --recursive -r ts-node/register tests/**/*.test.ts",
"test-coverage": "jest --coverage",
"test:watch": "jest --coverage --watchAll",
"build:watch": "onchange 'src/**/*.ts' -- npm run build",
"view:coverage": "serve coverage/lcov-report"
},
"repository": {
"type": "git",
"url": "git+https://github.com/johnakhilomen/node-badger.git"
},
"keywords": [
"nodejs",
"mvc",
"mvc",
"framework",
"nodejs",
"framework",
"node-badger",
"node",
"framework",
"node",
"mvc",
"nodejs",
"mvc",
"node-badger",
"MVC",
"framework"
],
"author": "John Akhilomen <me@johnakhilomen.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/johnakhilomen/node-badger/issues"
},
"homepage": "https://github.com/johnakhilomen/node-badger#readme",
"bin": {
"node-badger": "dist/bin/main.js",
"node-badger-mongoose-model": "/dist/bin/generateMongooseModel.js"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/jest": "^26.0.14",
"@types/mocha": "^8.0.3",
"@types/node": "^14.11.2",
"@types/sinon": "^9.0.7",
"chai": "^4.2.0",
"jest": "^26.4.2",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"shx": "^0.3.2",
"sinon": "^9.1.0",
"ts-jest": "^26.4.1",
"ts-node": "^9.0.0",
"tslint": "^6.1.3",
"typedoc": "^0.19.2",
"typescript": "^4.0.3"
},
"dependencies": {
"@types/inquirer": "^7.3.1",
"inquirer": "^7.3.3",
"yargs": "^16.0.3"
}
}