-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
73 lines (73 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
{
"name": "redbean-node",
"version": "0.3.3",
"description": "RedBeanNode is an easy to use ORM tool for Node.js, strongly inspired by RedBeanPHP. It automatically generates the tables and columns on-the-fly",
"main": "dist/redbean-node.js",
"types": "dist/redbean-node.d.ts",
"files": [
"dist/*",
"README.md",
".gitignore"
],
"scripts": {
"build": "tsc",
"test": "tsc && npm run build && nyc --reporter=html mocha --timeout 60000",
"coverage": "npm test && nyc report --reporter=text-lcov | coveralls",
"publish-release": "np",
"example2": "node -r ts-node/register --inspect dev_example2.ts",
"simple-mariadb": "docker run --rm -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 mariadb"
},
"author": "Louis Lam",
"license": "MIT",
"dependencies": {
"@types/node": "~20.3.1",
"await-lock": "~2.2.2",
"dayjs": "~1.11.8",
"glob": "~10.3.0",
"knex": "~2.4.2",
"lodash": "~4.17.21"
},
"homepage": "https://redbean-node.whatsticker.online",
"bugs": {
"url": "https://github.com/louislam/redbean-node/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/louislam/redbean-node"
},
"keywords": [
"redbeanphp",
"orm",
"sql",
"mysql",
"mariadb",
"sqlite",
"query",
"knex",
"bean",
"redbean",
"redbean-node",
"redbeannode"
],
"np": {
"releaseDraft": false,
"cleanup": false
},
"devDependencies": {
"axios": "~0.21.4",
"body-parser": "~1.20.2",
"chai": "~4.3.7",
"coveralls": "~3.1.1",
"dotenv": "~8.6.0",
"express": "~4.18.2",
"mocha": "~10.2.0",
"mocha-lcov-reporter": "~1.3.0",
"mysql": "~2.18.1",
"np": "~7.7.0",
"nyc": "~15.1.0",
"sqlite3": "~5.1.6",
"tcp-ping": "~0.1.1",
"ts-node": "~10.9.1",
"typescript": "~4.9.5"
}
}