forked from JSONPath-Plus/JSONPath
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.47 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.47 KB
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"author": "Stefan Goessner",
"name": "jsonpath-plus",
"version": "4.0.0",
"main": "dist/index-umd.js",
"module": "dist/index-es.js",
"types": "./src/jsonpath.d.ts",
"description": "A JS implementation of JSONPath with some additional operators",
"contributors": [
{
"name": "Prof. Gössner",
"email": "stefan.goessner@fh-dortmund.de"
},
{
"name": "Subbu Allamaraju",
"email": "subbu@subbu.org"
},
{
"name": "Mike Brevoort",
"email": "mike@brevoort.com"
},
{
"name": "Robert Krahn",
"email": "robert.krahn@gmail.com"
},
{
"name": "Brett Zamir",
"email": "brettz9@yahoo.com"
},
{
"name": "Richard Schneider",
"email": "makaretu@gmail.com"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/s3u/JSONPath.git"
},
"bugs": "https://github.com/s3u/JSONPath/issues/",
"homepage": "https://github.com/s3u/JSONPath",
"engines": {
"node": ">=10.0"
},
"react-native": {
"vm": false
},
"dependencies": {},
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"@mysticatea/eslint-plugin": "^13.0.0",
"babel-eslint": "^10.1.0",
"chai": "^4.2.0",
"core-js-bundle": "^3.6.4",
"coveradge": "^0.5.0",
"eslint": "^6.8.0",
"eslint-config-ash-nazg": "^18.0.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-array-func": "^3.1.4",
"eslint-plugin-chai-expect": "^2.1.0",
"eslint-plugin-chai-friendly": "^0.5.0",
"eslint-plugin-compat": "^3.5.1",
"eslint-plugin-eslint-comments": "^3.1.2",
"eslint-plugin-html": "^6.0.0",
"eslint-plugin-import": "^2.20.1",
"eslint-plugin-jsdoc": "^22.1.0",
"eslint-plugin-markdown": "^1.0.2",
"eslint-plugin-no-unsanitized": "^3.1.0",
"eslint-plugin-no-use-extend-native": "^0.4.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-sonarjs": "^0.5.0",
"eslint-plugin-standard": "^4.0.1",
"eslint-plugin-unicorn": "^18.0.0",
"esm": "^3.2.25",
"license-badger": "^0.13.0",
"mocha": "^7.1.1",
"mocha-badge-generator": "^0.5.2",
"mocha-multi-reporters": "git+https://github.com/brettz9/mocha-multi-reporters.git#missing-reporter",
"node-static": "^0.7.11",
"nyc": "^15.0.0",
"open-cli": "^6.0.1",
"remark-cli": "^7.0.1",
"remark-lint-code-block-style": "^1.0.4",
"remark-lint-ordered-list-marker-value": "^1.0.5",
"rollup": "2.2.0",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-terser": "^5.3.0",
"typedoc": "^0.17.3",
"typescript": "^3.8.3"
},
"keywords": [
"json",
"jsonpath"
],
"browserslist": [
"cover 100%"
],
"nyc": {
"reporter": [
"text",
"html",
"json-summary"
],
"exclude": [
".eslintrc.js",
"rollup.config.js",
".idea",
"coverage",
"dist",
"demo",
"docs",
"test",
"test-helpers"
]
},
"scripts": {
"prepublishOnly": "npm run license-badges",
"license-badge": "license-badger --corrections --uncategorizedLicenseTemplate \"\\${license} (\\${name} (\\${version}))\" --filteredTypes=nonempty --textTemplate \"License types\n(project, deps, and bundled devDeps)\" --packageJson --production badges/licenses-badge.svg",
"license-badge-dev": "license-badger --corrections --filteredTypes=nonempty --textTemplate \"License types\n(all devDeps)\" --allDevelopment badges/licenses-badge-dev.svg",
"license-badges": "npm run license-badge && npm run license-badge-dev",
"remark": "remark -q -f .",
"typescript": "tsc src/jsonpath.d.ts",
"build-docs": "typedoc --out docs/ts src --includeDeclarations",
"open-docs": "open-cli http://localhost:8084/docs/ts/ && npm start",
"coverage": "open-cli http://localhost:8084/coverage/ && npm start",
"coverage-badge": "coveradge badges/coverage-badge.svg",
"mocha": "mocha --require esm --require test-helpers/node-env.js --reporter-options configFile=mocha-multi-reporters.json test",
"test": "npm run rollup && npm run mocha",
"test-cov": "rm -Rf ./coverage && rm -Rf ./node_modules/.cache && nyc --all npm run mocha && npm run coverage-badge",
"open": "open-cli http://localhost:8084/demo/ && npm start",
"start": "static -p 8084",
"rollup": "rollup -c",
"eslint": "eslint --ext js,md,html .",
"browser-test": "npm run eslint && npm run rollup && open-cli http://localhost:8084/test/ && npm start"
}
}