forked from korel-san/doc-path
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·43 lines (43 loc) · 986 Bytes
/
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
{
"author": "mrodrig",
"name": "doc-path",
"description": "A document path library for Node",
"version": "2.1.2",
"repository": {
"type": "git",
"url": "http://github.com/mrodrig/doc-path.git"
},
"main": "./src/path.js",
"scripts": {
"test": "mocha test/tests.js",
"coverage": "nyc --reporter=lcov --reporter=text-summary --reporter=text _mocha",
"lint": "eslint src test"
},
"keywords": [
"document",
"json",
"json library",
"document path",
"doc-path",
"doc path",
"doc",
"path",
"json path",
"path evaluator",
"object",
"object path",
"parse",
"parser"
],
"dependencies": {},
"devDependencies": {
"eslint": "6.8.0",
"mocha": "7.1.2",
"nyc": "14.1.1",
"should": "13.2.3"
},
"engines": {
"node": ">=10"
},
"license": "MIT"
}