-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathpackage.json
52 lines (52 loc) · 1.41 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
{
"author": "Paul Serby <[email protected]>",
"name": "save",
"description": "A simple CRUD based persistence abstraction for storing objects to any backend data store. eg. Memory, MongoDB, Redis, CouchDB, Postgres, Punch Card etc.",
"version": "2.9.0",
"tags": [
"data",
"database",
"ORM",
"it's not an ORM"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "[email protected]:serby/save"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"main": "lib/save",
"scripts": {
"lint": "eslint -f unix .",
"test": "nyc mocha -- --recursive -R spec -r should",
"prepublish": "npm test && npm prune",
"pretest": "npm run-script lint",
"prettier": "prettier --write '**/*.js'"
},
"engine": ">=6",
"dependencies": {
"async": "^3.2.2",
"event-stream": "^4.0.1",
"lodash.assign": "^4.2.0",
"mingo": "^6.1.0"
},
"devDependencies": {
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-config-prettier-standard": "^3.0.1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"lodash": "^4.17.21",
"mocha": "^9.2.2",
"nyc": "^14.1.1",
"prettier": "^1.18.2",
"should": "^13.2.3",
"stream-assert": "^2.0.3"
}
}