-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
69 lines (69 loc) · 1.92 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
{
"name": "sqlite-to-rest",
"version": "0.3.0",
"description": "Create a rest api from an existing sqlite3 database",
"bin": {
"sqlite-to-rest": "bin/sqlite-to-rest.js"
},
"main": "lib/index.js",
"scripts": {
"test": "mocha tests",
"is-pretty": "prettier --check \"**/*.{js,md}\"",
"prettify": "prettier --write \"**/*.{js,md}\"",
"lint": "eslint \"**/*.js\"",
"verify": "npm run is-pretty && npm run lint && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/olsonpm/sqlite-to-rest.git"
},
"author": "phil olson",
"license": "SEE LICENSE IN license.txt",
"bugs": {
"url": "https://github.com/olsonpm/sqlite-to-rest/issues"
},
"homepage": "https://github.com/olsonpm/sqlite-to-rest#readme",
"dependencies": {
"@koa/bodyparser": "^5.1.1",
"bluebird": "^3.4.0",
"deep-freeze-strict": "^1.1.1",
"JSONStream": "^1.1.1",
"koa": "^2.15.3",
"koa-decoded-querystring": "0.1.1",
"koa-router": "^12.0.1",
"lodash": "^4.17.15",
"madonna-fp": "github:olsonpm/madonna-fp",
"madonna-function": "github:olsonpm/madonna-function",
"ncp": "^2.0.0",
"portfinder": "^1.0.3",
"require-dir": "^0.3.0",
"sqlite3": "^5.0.8",
"structured-cli": "github:olsonpm/structured-cli#d299cf432dfdf34393fa5349f42f30cea79a32a3",
"through2": "^2.0.1"
},
"devDependencies": {
"@olsonpm/eslint-config-personal": "github:olsonpm/eslint-config-personal",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"chai-subset": "^1.6.0",
"del": "^4.1.1",
"eslint": "^8.57.1",
"filecompare": "^1.0.4",
"make-dir": "^3.0.0",
"mocha": "^9.2.2",
"prettier": "^3.3.3",
"request": "^2.88.2",
"request-promise": "^4.2.6"
},
"eslintConfig": {
"extends": "@olsonpm/personal"
},
"prettier": {
"singleQuote": true,
"trailingComma": "es5",
"semi": false
},
"engines": {
"node": ">=16"
}
}