-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
126 lines (126 loc) · 3.85 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
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "@fractalerp/active-record-js",
"appName": "Active Record Js",
"version": "1.0.16",
"description": "Responsible for representing business data",
"author": "Acellam Guy <[email protected]>",
"keywords": [
"mongodb",
"document",
"model",
"schema",
"database",
"odm",
"data",
"datastore",
"query",
"mysql",
"nosql",
"orm",
"db",
"active record"
],
"engines": {
"node": "16.8.0",
"npm": "^7.21.0"
},
"main": "./dist/active_record.js",
"types": "./dist/active_record.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "npm run dev:app",
"watch": "nodemon --watch webpack.config.js --watch Gruntfile.js --exec grunt",
"dev:app": "nodemon ./dist/main.js",
"emit": "tsc",
"pretest": "npm run lint && npm run build:test && tsc",
"test": "NODE_ENV='test' RDBMS_DATABASE_URI='mysql://' TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --config .mocharc.json",
"test:dev": "NODE_ENV='test' RDBMS_DATABASE_URI='mysql://' TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' mocha --config .mocharc.dev.json",
"test:unit": "NODE_ENV='test' RDBMS_DATABASE_URI='mysql://' TS_NODE_COMPILER_OPTIONS='{\"module\":\"commonjs\"}' nyc -r lcov -e .ts -x \"*.spec.ts\" mocha --config .mocharc.json -r ts-node/register && nyc report",
"coverage": "NODE_ENV='test' RDBMS_DATABASE_URI='mysql://' nyc --reporter cobertura mocha --config .mocharc.dev.json",
"lint": "",
"lint:fix": "npm run lint -- --fix",
"build:development": "grunt development",
"build": "grunt release",
"build:release": "npm run build",
"build:test": "grunt test"
},
"pre-commit": [
"emit",
"lint"
],
"repository": {
"type": "git",
"url": "https://github.com/fractalerp/active-record-js"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/fractalerp/active-record-js/issues"
},
"devDependencies": {
"@types/chai": "^4.3.12",
"@types/classnames": "^2.3.1",
"@types/core-js": "^2.5.8",
"@types/dotenv": "^8.2.0",
"@types/mocha": "^10.0.7",
"@types/node": "^22.5.1",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/eslint-plugin-tslint": "^7.0.2",
"@typescript-eslint/parser": "^7.2.0",
"ajv": "^8.12.0",
"chai": "4.5.0",
"check-dependencies": "^2.0.0",
"copy-webpack-plugin": "^12.0.2",
"core-js": "^3.36.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jsdoc": "^50.2.2",
"eslint-plugin-prefer-arrow": "^1.2.3",
"grunt": "^1.3.0",
"grunt-check-dependencies": "^1.0.0",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-compress": "^2.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-watch": "^1.0.1",
"grunt-file-append": "0.0.7",
"grunt-newer": "^1.3.0",
"grunt-webpack": "^7.0.0",
"html-loader": "^5.0.0",
"install": "^0.13.0",
"istanbul": "^0.4.5",
"mocha": "^10.3.0",
"mocha-lcov-reporter": "^1.3.0",
"nodemon": "^3.1.0",
"npm": "^11.0.0",
"nyc": "^15.1.0",
"pre-commit": "^1.2.2",
"remap-istanbul": "^0.13.0",
"sinon": "^18.0.0",
"string-replace-loader": "^3.1.0",
"supertest": "^6.3.4",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.2",
"webpack": "^5.90.3",
"webpack-dev-server": "^5.0.3",
"webpack-merge": "^5.10.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@faker-js/faker": "^9.2.0",
"@types/app-root-path": "^1.2.8",
"@types/base64url": "^2.0.3",
"@types/bcryptjs": "^2.4.6",
"@types/bluebird": "^3.5.42",
"app-root-path": "^3.0.0",
"bluebird": "^3.7.2",
"dotenv": "^16.4.7",
"http-status-codes": "^2.3.0",
"mongoose": "^8.8.1",
"mysql2": "^3.11.0",
"sequelize": "^6.37.5"
}
}