mirror of
https://github.com/labring/laf.git
synced 2026-01-25 16:07:45 +00:00
43 lines
1.1 KiB
JSON
43 lines
1.1 KiB
JSON
{
|
|
"name": "database-ql",
|
|
"version": "1.0.0-beta.2",
|
|
"description": "Database interface for laf",
|
|
"main": "dist/commonjs/index.js",
|
|
"module": "dist/esm/index.js",
|
|
"scripts": {
|
|
"watch": "tsc -w",
|
|
"test": "mocha tests/units/**/*.test.js",
|
|
"build": "tsc -p tsconfig.json && tsc -p tsconfig.esm.json",
|
|
"eslint": "eslint \"./**/*.ts\"",
|
|
"fix": "eslint --fix \"./**/*.ts\"",
|
|
"prepublishOnly": "npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/labring/laf.git"
|
|
},
|
|
"keywords": [
|
|
"laf",
|
|
"laf-client-sdk",
|
|
"database-ql"
|
|
],
|
|
"author": "maslow (wangfugen@126.com)",
|
|
"license": "ISC",
|
|
"devDependencies": {
|
|
"eslint": "^8.8.0",
|
|
"eslint-config-prettier": "^4.1.0",
|
|
"eslint-plugin-prettier": "^3.0.1",
|
|
"eslint-plugin-typescript": "^0.14.0",
|
|
"express": "^4.17.1",
|
|
"mocha": "^9.2.0",
|
|
"typescript": "^3.6.2",
|
|
"typescript-eslint-parser": "^22.0.0"
|
|
},
|
|
"dependencies": {
|
|
"bson": "^4.5.3",
|
|
"lodash.clonedeep": "4.5.0",
|
|
"lodash.set": "4.3.2",
|
|
"lodash.unset": "4.5.2"
|
|
}
|
|
}
|