-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 2.21 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
75
76
{
"name": "midori-common",
"version": "1.0.0",
"description": "The library for the \"everything included\" webframework for NodeJs.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"watch": "tsc -w --noEmit",
"tscheck": "tsc --noEmit",
"test": "mocha -r ts-node/register test/**/*.test.ts test/**/**/*.test.ts",
"test:coverage": "nyc npm run test",
"feature-tests": "./node_modules/.bin/cucumber-js --require features/stepDefinitions/*.ts --require-module ts-node/register -p default",
"coverage": "nyc --all --reporter=lcov npm test",
"build": "tsc -p ./tsconfig.build.json && cp package.json ./dist && cp README.md ./dist",
"dist": "npm run build && cd ./dist && npm publish"
},
"keywords": [
"webframework",
"orm",
"rest",
"react"
],
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"include": [
"src/**/!(*.test.*).[tj]s?(x)"
],
"exclude": [
"src/_tests_/**/*.*"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
},
"author": "Mike Cornwell",
"license": "GPL-3.0-or-later",
"devDependencies": {
"@cucumber/cucumber": "^8.0.0-rc.1",
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/async-lock": "^1.1.3",
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/lodash": "^4.14.176",
"@types/mocha": "^9.0.0",
"@types/proxyquire": "^1.3.28",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.3.0",
"axios-mock-adapter": "^1.21.1",
"babel-eslint": "^10.1.0",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-functional": "^3.2.1",
"eslint-plugin-import": "^2.22.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"ts-mock-imports": "^1.3.8",
"ts-node": "^10.9.1",
"typescript": "^4.1.6"
},
"dependencies": {
"functional-models": "^2.0.10",
"functional-models-auth": "^2.0.1",
"functional-models-orm": "^2.0.18"
}
}