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
| {
| "_args": [
| [
| "flatted@2.0.1",
| "E:\\ximenzi\\wms\\old\\api"
| ]
| ],
| "_development": true,
| "_from": "flatted@2.0.1",
| "_id": "flatted@2.0.1",
| "_inBundle": false,
| "_integrity": "sha512-a1hQMktqW9Nmqr5aktAux3JMNqaucxGcjtjWnZLHX7yyPCmlSV3M54nGYbqT8K+0GhF3NBgmJCc3ma+WOgX8Jg==",
| "_location": "/flatted",
| "_phantomChildren": {},
| "_requested": {
| "type": "version",
| "registry": true,
| "raw": "flatted@2.0.1",
| "name": "flatted",
| "escapedName": "flatted",
| "rawSpec": "2.0.1",
| "saveSpec": null,
| "fetchSpec": "2.0.1"
| },
| "_requiredBy": [
| "/flat-cache"
| ],
| "_resolved": "https://registry.npmjs.org/flatted/-/flatted-2.0.1.tgz",
| "_spec": "2.0.1",
| "_where": "E:\\ximenzi\\wms\\old\\api",
| "author": {
| "name": "Andrea Giammarchi"
| },
| "bugs": {
| "url": "https://github.com/WebReflection/flatted/issues"
| },
| "description": "A super light and fast circular JSON parser.",
| "devDependencies": {
| "circular-json": "latest",
| "circular-json-es6": "latest",
| "coveralls": "latest",
| "istanbul": "latest",
| "jsan": "latest",
| "uglify-js": "latest"
| },
| "homepage": "https://github.com/WebReflection/flatted#readme",
| "keywords": [
| "circular",
| "JSON",
| "fast",
| "parser",
| "minimal"
| ],
| "license": "ISC",
| "main": "cjs/index.js",
| "module": "esm/index.js",
| "name": "flatted",
| "repository": {
| "type": "git",
| "url": "git+https://github.com/WebReflection/flatted.git"
| },
| "scripts": {
| "bench": "node test/bench.js",
| "build": "npm run cjs && npm test && npm run esm && npm run min && npm run size",
| "cjs": "cp index.js cjs/index.js; echo 'module.exports = Flatted;' >> cjs/index.js",
| "coveralls": "cat ./coverage/lcov.info | coveralls",
| "esm": "cp index.js esm/index.js; echo 'export default Flatted;' >> esm/index.js; echo 'export var parse = Flatted.parse;' >> esm/index.js; echo 'export var stringify = Flatted.stringify;' >> esm/index.js",
| "min": "echo '/*! (c) 2018, Andrea Giammarchi, (ISC) */'>min.js && uglifyjs index.js --support-ie8 -c -m >> min.js",
| "size": "cat index.js | wc -c;cat min.js | wc -c;gzip -c9 min.js | wc -c;cat min.js | brotli | wc -c",
| "test": "istanbul cover test/index.js"
| },
| "types": "types.d.ts",
| "unpkg": "min.js",
| "version": "2.0.1"
| }
|
|