-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.67 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.67 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
{
"name": "@nymphjs/driver-mysql",
"version": "1.0.0-beta.117",
"description": "Nymph.js - MySQL DB Driver",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"nymph",
"ORM",
"object relational mapper"
],
"scripts": {
"clean": "test -d dist && rm -r dist || true",
"build": "tsc",
"watch": "tsc --watch",
"prepublish": "npm run clean && npm run build",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest",
"test:watch": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest --watch",
"test:db:start": "docker run --rm --name nymph-mysql -e MYSQL_ROOT_PASSWORD=123nymphroot -e MYSQL_DATABASE=nymph -e MYSQL_USER=nymph -e MYSQL_PASSWORD=nymph -p 3306:3306 mysql",
"test:db:stop": "docker kill -s TERM nymph-mysql"
},
"publishConfig": {
"access": "public"
},
"homepage": "https://nymph.io",
"repository": {
"type": "git",
"url": "https://forge.sciactive.com/sciactive/nymphjs.git",
"directory": "packages/driver-mysql"
},
"author": "Hunter Perrin <hperrin@port87.com>",
"bugs": {
"url": "https://forge.sciactive.com/sciactive/nymphjs/issues"
},
"license": "Apache-2.0",
"dependencies": {
"@nymphjs/guid": "^1.0.0-beta.117",
"@nymphjs/nymph": "^1.0.0-beta.117",
"@sciactive/tokenizer": "^3.0.2",
"mysql2": "^3.17.0",
"sqlstring": "^2.3.3"
},
"devDependencies": {
"@nymphjs/tilmeld": "^1.0.0-beta.117",
"@tsconfig/recommended": "^1.0.13",
"@types/jest": "^30.0.0",
"@types/sqlstring": "^2.3.2",
"jest": "^30.2.0",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"typescript": "^5.9.3"
}
}