forked from seald/nedb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·95 lines (95 loc) · 2.34 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
{
"name": "nedb-for-mongoose",
"version": "3.0.3",
"files": [
"lib/**/*.js",
"browser-version/**/*.js",
"index.js"
],
"author": {
"name": "caozhiwu",
"email": "[email protected]"
},
"contributors": [
{
"name": "Louis Chatriot",
"email": "[email protected]"
},
{
"name": "Timothée Rebours",
"email": "[email protected]",
"url": "https://www.seald.io/"
},
{
"name": "caozhiwu",
"email": "[email protected]"
}
],
"description": "The JavaScript File-based embedded Database, for Node.js, nw.js, electron and the browser.API is a subset of MongoDB's and it's mongoose Compatible!",
"keywords": [
"database",
"embedded",
"mongodb",
"mongoose"
],
"homepage": "https://github.com/czwbig/nedb",
"repository": {
"type": "git",
"url": "[email protected]:czwbig/nedb.git"
},
"dependencies": {
"@seald-io/binary-search-tree": "^1.0.2",
"async": "0.2.10",
"chai": "^4.3.4",
"localforage": "^1.9.0",
"ramda": "^0.27.1"
},
"devDependencies": {
"commander": "^7.2.0",
"events": "^3.3.0",
"jquery": "^3.6.0",
"karma": "^6.3.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-junit-reporter": "^2.0.1",
"karma-mocha": "^2.0.1",
"karma-source-map-support": "^1.4.0",
"mocha": "^8.4.0",
"mocha-junit-reporter": "^2.0.0",
"path-browserify": "^1.0.1",
"process": "^0.11.10",
"semver": "^7.3.5",
"source-map-loader": "^2.0.2",
"standard": "^16.0.3",
"terser-webpack-plugin": "^5.1.2",
"timers-browserify": "^2.0.12",
"webpack": "^5.37.0",
"webpack-cli": "^4.7.0",
"xvfb-maybe": "^0.2.1"
},
"scripts": {
"lint": "standard",
"test": "mocha --reporter spec --timeout 10000",
"build:browser": "webpack && webpack --optimization-minimize",
"pretest:browser": "npm run build:browser",
"test:browser": "xvfb-maybe karma start karma.conf.local.js",
"prepublishOnly": "npm run build:browser"
},
"main": "index.js",
"browser": {
"./lib/customUtils.js": "./browser-version/lib/customUtils.js",
"./lib/storage.js": "./browser-version/lib/storage.js"
},
"license": "MIT",
"publishConfig": {
"access": "public"
},
"standard": {
"ignore": [
"browser-version/out"
]
},
"engines": {
"node": ">= 12"
}
}