-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
103 lines (103 loc) · 2.98 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
{
"name": "feathers-lowdb",
"description": "A LowDB feathers database adapter service with yaml and json support",
"type": "module",
"version": "1.0.0-alpha.13",
"homepage": "https://vblip.com",
"main": "lib/src/index.js",
"types": "lib/src/index.d.ts",
"keywords": [
"feathers",
"feathersjs",
"feathers-plugin",
"feathers-adapter",
"lowdb",
"database",
"nosql",
"mongodb",
"nedb",
"knex",
"sql",
"lodash",
"sift"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/lwhiteley/feathers-lowdb.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [
"Layton Whiteley",
"Ray Foss"
],
"bugs": {
"url": "https://github.com/feathersjs/feathers/issues"
},
"engines": {
"node": ">= 16"
},
"files": [
"CHANGELOG.md",
"LICENSE",
"README.md",
"_templates/**",
"src/**",
"lib/**",
"*.js"
],
"scripts": {
"prepublishOnly": "npm run compile",
"pack": "echo 'Skipping pack.'",
"upstream-pack": "npm pack --pack-destination ../generators/test/build",
"compile": "shx rm -rf lib/ && tsc && npm run pack",
"test": "NODE_OPTIONS='' npx mocha --config .mocharc.json --recursive test/**/*.test.ts",
"test-artifacts": "cat /tmp/low-*.yaml",
"example-vanilla": "ts-node --esm examples/vanilla.ts",
"LEGACY-SCRIPTS-BELOW": "echo please migrate these",
"reset": "rm -rf db-data",
"x-publish": "git push --follow-tags && run-s changelog && git push",
"changelog:commit": "git add CHANGELOG.md && git commit -am \"chore: updating changelog\";exit 0",
"changelog:gen": "conventional-changelog -p angular -i CHANGELOG.md -s",
"changelog": "run-s changelog:gen changelog:commit",
"mocha": "npm run reset && mocha --recursive test --timeout 5000 **/*.test.js",
"x-test": "npm run lint && npm run mocha",
"start": "node example/app",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:commits": "commitlint --from origin/master --to HEAD"
},
"publishConfig": {
"access": "public"
},
"directories": {
"lib": "lib"
},
"dependencies": {
"@feathersjs/adapter-commons": "^5.0.4",
"@feathersjs/commons": "^5.0.4",
"@feathersjs/errors": "^5.0.4",
"lowdb": "^5.1.0",
"sift": "^17.0.1",
"yaml": "^2.2.1"
},
"devDependencies": {
"@feathersjs/adapter-tests": "^5.0.4",
"@feathersjs/feathers": "^5.0.4",
"@types/mocha": "^10.0.1",
"@types/node": "^18.14.6",
"mocha": "^10.2.0",
"shx": "^0.3.4",
"source-map-support": "^0.5.21",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"gitHead": "90caf635aec850550b9d37bea2762af959d9e8d5"
}