-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.21 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.21 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
{
"name": "faux-sql",
"version": "0.4.2",
"type": "module",
"description": "A local JSON database using standard MySQL queries. The fastest way to get a database into your project.",
"keywords": [
"database",
"json",
"local",
"mysql",
"development",
"readable",
"simple",
"lightweight",
"javascript"
],
"main": "index.js",
"bin": {
"faux-sql": "cli.js"
},
"scripts": {
"lint": "eslint .",
"test-jest": "node --experimental-vm-modules --no-warnings node_modules/jest/bin/jest.js",
"test": "npm run lint && npm run test-jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/seebigs/faux-sql.git"
},
"author": "Chris Bigelow <seebigswork@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/seebigs/faux-sql/issues"
},
"jest": {
"setupFiles": [
"<rootDir>/test/setup.js"
],
"transform": {}
},
"dependencies": {
"minimist": "^1.2.8",
"mkdirp": "^3.0.1",
"node-sql-parser": "^4.5.1",
"seebigs-each": "^1.1.0"
},
"devDependencies": {
"eslint": "^8.24.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"jest": "^29.7.0"
}
}