source: trip-planner-front/node_modules/@discoveryjs/json-ext/package.json@ eed0bf8

Last change on this file since eed0bf8 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 1.8 KB
Line 
1{
2 "name": "@discoveryjs/json-ext",
3 "version": "0.5.3",
4 "description": "A set of utilities that extend the use of JSON",
5 "keywords": [
6 "json",
7 "utils",
8 "stream",
9 "async",
10 "promise",
11 "stringify",
12 "info"
13 ],
14 "author": "Roman Dvornov <rdvornov@gmail.com> (https://github.com/lahmatiy)",
15 "license": "MIT",
16 "repository": "discoveryjs/json-ext",
17 "main": "./src/index",
18 "browser": {
19 "./src/stringify-stream.js": "./src/stringify-stream-browser.js",
20 "./src/text-decoder.js": "./src/text-decoder-browser.js"
21 },
22 "scripts": {
23 "test": "mocha --reporter progress",
24 "lint": "eslint src test",
25 "lint-and-test": "npm run lint && npm test",
26 "build": "rollup --config",
27 "test:all": "npm run test:src && npm run test:dist",
28 "test:src": "npm test",
29 "test:dist": "cross-env MODE=dist npm test && cross-env MODE=dist-min npm test",
30 "build-and-test": "npm run build && npm run test:dist",
31 "coverage": "nyc npm test",
32 "travis": "nyc npm run lint-and-test && npm run build-and-test && npm run coveralls",
33 "coveralls": "nyc report --reporter=text-lcov | coveralls",
34 "prepublishOnly": "npm run build"
35 },
36 "dependencies": {},
37 "devDependencies": {
38 "@rollup/plugin-commonjs": "^15.1.0",
39 "@rollup/plugin-json": "^4.1.0",
40 "@rollup/plugin-node-resolve": "^9.0.0",
41 "chalk": "^4.1.0",
42 "coveralls": "^3.1.0",
43 "cross-env": "^7.0.3",
44 "eslint": "^7.6.0",
45 "mocha": "^8.1.1",
46 "nyc": "^15.1.0",
47 "rollup": "^2.28.2",
48 "rollup-plugin-terser": "^7.0.2"
49 },
50 "engines": {
51 "node": ">=10.0.0"
52 },
53 "files": [
54 "dist",
55 "src"
56 ]
57}
Note: See TracBrowser for help on using the repository browser.