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
| {
| "_from": "jsonata@1.8.6",
| "_id": "jsonata@1.8.6",
| "_inBundle": false,
| "_integrity": "sha512-ZH2TPYdNP2JecOl/HvrH47Xc+9imibEMQ4YqKy/F/FrM+2a6vfbGxeCX23dB9Fr6uvGwv+ghf1KxWB3iZk09wA==",
| "_location": "/jsonata",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "jsonata@1.8.6",
| "name": "jsonata",
| "escapedName": "jsonata",
| "rawSpec": "1.8.6",
| "saveSpec": null,
| "fetchSpec": "1.8.6"
| },
| "_requiredBy": [
| "/"
| ],
| "_resolved": "https://registry.npmjs.org/jsonata/-/jsonata-1.8.6.tgz",
| "_shasum": "e5f0e6ace870a34bac881a182ca2b31227122791",
| "_spec": "jsonata@1.8.6",
| "_where": "/home/l/plc/node-red",
| "bugs": {
| "url": "https://github.com/jsonata-js/jsonata/issues"
| },
| "bundleDependencies": false,
| "deprecated": false,
| "description": "JSON query and transformation language",
| "devDependencies": {
| "@babel/cli": "^7.8.4",
| "@babel/core": "^7.8.4",
| "@babel/preset-env": "^7.8.4",
| "browserify": "^16.5.0",
| "chai": "^4.2.0",
| "chai-as-promised": "^7.1.1",
| "coveralls": "^3.0.9",
| "eslint": "^6.8.0",
| "eslint-plugin-ideal": "^0.1.3",
| "istanbul": "^0.4.5",
| "jsdoc": "^3.6.3",
| "mkdirp": "^1.0.3",
| "mocha": "^7.0.1",
| "mocha-lcov-reporter": "^1.3.0",
| "regenerator": "^0.14.4",
| "request": "^2.88.2",
| "uglify-es": "^3.3.10"
| },
| "engines": {
| "node": ">= 8"
| },
| "homepage": "http://jsonata.org/",
| "keywords": [
| "JSON",
| "query",
| "transformation",
| "transform",
| "mapping",
| "path"
| ],
| "license": "MIT",
| "main": "jsonata.js",
| "module": "jsonata.js",
| "name": "jsonata",
| "repository": {
| "type": "git",
| "url": "git+https://github.com/jsonata-js/jsonata.git"
| },
| "scripts": {
| "browserify": "browserify src/jsonata.js --outfile jsonata.js --standalone jsonata",
| "browserify-es5": "regenerator --include-runtime polyfill.js > jsonata-es5.js; browserify dist/jsonata.js --standalone jsonata >> jsonata-es5.js",
| "build-es5": "npm run mkdir-dist && npm run regenerator && npm run browserify-es5 && npm run minify-es5",
| "check-coverage": "istanbul check-coverage -statement 100 -branch 100 -function 100 -line 100",
| "cover": "istanbul cover _mocha",
| "coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls",
| "doc": "jsdoc --configure jsdoc.json .",
| "lint": "eslint src",
| "minify": "uglifyjs jsonata.js -o jsonata.min.js --compress --mangle",
| "minify-es5": "uglifyjs jsonata-es5.js -o jsonata-es5.min.js --compress --mangle",
| "mkdir-dist": "mkdirp ./dist",
| "mocha": "node ./node_modules/istanbul/lib/cli.js cover --report cobertura --report html ./node_modules/mocha/bin/_mocha -- \"test/**/*.js\"",
| "posttest": "npm run check-coverage && npm run browserify && npm run minify && npm run build-es5",
| "prepublishOnly": "npm run browserify && npm run minify && npm run build-es5",
| "pretest": "npm run lint",
| "regenerator": "babel src --out-dir dist --presets=@babel/env",
| "test": "npm run mocha"
| },
| "typings": "jsonata.d.ts",
| "version": "1.8.6"
| }
|
|