-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·55 lines (55 loc) · 1.47 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
{
"author": "mrodrig",
"name": "doc-path",
"description": "A document path library for Node",
"version": "4.1.2",
"homepage": "https://mrodrig.github.io/doc-path",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/mrodrig/doc-path.git"
},
"main": "./lib/path.js",
"types": "./lib/path.d.ts",
"scripts": {
"build": "npm run lint && npm run test && npm run compile",
"compile": "tsc -p tsconfig.build.json",
"coverage": "nyc npm run test",
"lint": "eslint --ext .js,.ts src test",
"prepublishOnly": "npm run build",
"test": "mocha -r ts-node/register test/index.ts"
},
"keywords": [
"document",
"json",
"json library",
"document path",
"doc-path",
"doc path",
"doc",
"path",
"json path",
"path evaluator",
"object",
"object path",
"parse",
"parser"
],
"dependencies": {},
"devDependencies": {
"@types/mocha": "10.0.1",
"@types/node": "18.15.3",
"@typescript-eslint/eslint-plugin": "5.55.0",
"@typescript-eslint/parser": "5.55.0",
"eslint": "8.36.0",
"eslint-config-google": "0.14.0",
"eslint-plugin-import": "2.27.5",
"mocha": "10.2.0",
"nyc": "15.1.0",
"ts-node": "10.9.1",
"typescript": "5.0.2"
},
"engines": {
"node": ">=16"
},
"license": "MIT"
}