-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
52 lines (52 loc) · 1.18 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
{
"name": "mpath",
"version": "0.9.0",
"description": "{G,S}et object values using MongoDB-like path notation",
"main": "index.js",
"scripts": {
"bench": "node ./benchmarks/bench.js",
"coverage": "nyc mocha test/*",
"lint": "eslint .",
"test": "mocha test/*"
},
"engines": {
"node": ">=12.0.0"
},
"contributors": [
{
"name": "Aras Abbasi",
"email": "aras.abbasi@gmail.com",
"url": "https://github.com/uzlopak"
}
],
"repository": "git://github.com/aheckmann/mpath.git",
"homepage": "https://github.com/aheckman/mpath",
"keywords": [
"mongodb",
"path",
"get",
"set"
],
"author": "Aaron Heckmann <aaron.heckmann+github@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aheckman/mpath/issues"
},
"types": "./types/index.d.ts",
"files": [
"index.js",
"types",
"lib",
"*.md"
],
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.30.7",
"@typescript-eslint/parser": "^5.30.7",
"benchmark": "~2.1.4",
"eslint": "^7.16.0",
"nyc": "^15.1.0",
"mocha": "5.x",
"typescript": "^4.7.4",
"eslint-plugin-mocha-no-only": "^1.1.1"
}
}