-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.87 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.87 KB
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "functional-models-orm",
"version": "2.1.13",
"description": "A basic ORM building library using the functional-models library.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"commit": "cz",
"watch": "tsc -w --noEmit",
"test": "mocha -r ts-node/register test/**/*.test.ts",
"test:coverage": "nyc npm run test",
"feature-tests": "node ./node_modules/.bin/cucumber-js --require ./features/stepDefinitions/*.js",
"coverage": "nyc --all --reporter=lcov npm test",
"build": "tsc -p ./tsconfig.build.json && cp package.json ./dist && cp README.md ./dist",
"build:watch": "nodemon -e '*' --watch ./src --exec npm run build",
"prettier": "prettier --write .",
"eslint": "eslint . --fix",
"dist": "npm run build && cd dist && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/monolithst/functional-models-orm.git"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"check-coverage": true,
"all": true,
"include": [
"src/**/!(*.test.*).[tj]s?(x)"
],
"exclude": [
"src/_tests_/**/*.*",
"node_modules",
".nyc_output",
"coverage",
".git",
".github",
"features"
],
"reporter": [
"html",
"lcov",
"text",
"text-summary"
],
"report-dir": "coverage"
},
"keywords": [
"orm",
"javascript",
"nodejs"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"author": "Mike Cornwell",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/monolithst/functional-models-orm/issues"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.2",
"@types/chai": "^4.3.0",
"@types/chai-as-promised": "^7.1.8",
"@types/lodash": "^4.14.177",
"@types/mocha": "^9.0.0",
"@types/node": "^16.11.7",
"@types/sinon": "^10.0.6",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"@typescript-eslint/parser": "^6.3.0",
"babel-eslint": "^10.1.0",
"chai": "^4.3.0",
"chai-as-promised": "^7.1.2",
"cucumber": "^6.0.7",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.46.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.0",
"eslint-plugin-functional": "^6.0.0",
"eslint-plugin-import": "^2.28.0",
"mocha": "^10.4.0",
"nodemon": "^3.1.0",
"nyc": "^17.1.0",
"prettier": "^3.2.5",
"proxyquire": "^2.1.3",
"sinon": "^11.1.2",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"homepage": "https://github.com/monolithst/functional-models-orm#readme",
"dependencies": {
"date-fns": "^3.6.0",
"functional-models": "^2.1.14",
"lodash": "^4.17.21"
}
}