-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 2.19 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
{
"access": "public",
"name": "@luics/json-server-orm",
"version": "0.4.22",
"description": "",
"author": "[email protected]",
"license": "MIT",
"main": "cjs/index.js",
"types": "cjs/index.d.js",
"files": [
"cjs"
],
"keywords": [
"json-server",
"orm"
],
"scripts": {
"start:server": "npx ts-node test/server/server.ts",
"lint": "eslint \"@(src|test)/**/*.@(js|ts|tsx)\"",
"test": "mocha -r \"ts-node/register\" test/**/*.spec.ts",
"test:dev": "nodemon --watch ./ --ext ts --delay 0 --exec 'printf \"\\33c\\e[3J\" && npm t'",
"test:cov": "nyc --reporter=html --reporter=text --check-coverage --branches 95 npm t",
"entity2schema": "entity2schema -i src/x-server-orm/src/test/entity/*.ts -o test/schema.json",
"data2sql": "data2sql -i src/x-server-orm/src/test/db.json -o test/db.sql",
"pull-x": "git subtree pull --prefix=src/x-server-orm x-server-orm main --squash",
"push-x": "git subtree push --prefix=src/x-server-orm x-server-orm main",
"dist": "rm -rf cjs && tsc -p tsconfig.cjs.json",
"preversion": "npm run lint && npm test",
"version": "npm run dist && git add -A .",
"postversion": "git push && git push --tags"
},
"engines": {
"node": ">= 14.17.0",
"npm": ">= 6.14.13"
},
"dependencies": {
"axios": "^0.21.1"
},
"devDependencies": {
"@luics/eslint-config": "^0.1.6",
"@types/assert": "^1.5.1",
"@types/json-server": "^0.14.3",
"@types/mocha": "^7.0.2",
"@types/node": "^14.17.9",
"@typescript-eslint/eslint-plugin": "^4.29.1",
"@typescript-eslint/parser": "^4.29.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-prettier": "^3.4.0",
"json-server": "^0.16.3",
"mocha": "^9.0.3",
"nodemon": "^2.0.4",
"nyc": "^15.1.0",
"prettier": "^2.3.2",
"ts-node": "^8.10.2",
"typescript": "^4.3.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/luics/json-server-orm.git"
},
"bugs": {
"url": "https://github.com/luics/json-server-orm/issues"
},
"homepage": "https://github.com/luics/json-server-orm#readme"
}