1 | {
|
2 | "name": "js-yaml",
|
3 | "version": "4.1.0",
|
4 | "description": "YAML 1.2 parser and serializer",
|
5 | "keywords": [
|
6 | "yaml",
|
7 | "parser",
|
8 | "serializer",
|
9 | "pyyaml"
|
10 | ],
|
11 | "author": "Vladimir Zapparov <dervus.grim@gmail.com>",
|
12 | "contributors": [
|
13 | "Aleksey V Zapparov <ixti@member.fsf.org> (http://www.ixti.net/)",
|
14 | "Vitaly Puzrin <vitaly@rcdesign.ru> (https://github.com/puzrin)",
|
15 | "Martin Grenfell <martin.grenfell@gmail.com> (http://got-ravings.blogspot.com)"
|
16 | ],
|
17 | "license": "MIT",
|
18 | "repository": "nodeca/js-yaml",
|
19 | "files": [
|
20 | "index.js",
|
21 | "lib/",
|
22 | "bin/",
|
23 | "dist/"
|
24 | ],
|
25 | "bin": {
|
26 | "js-yaml": "bin/js-yaml.js"
|
27 | },
|
28 | "module": "./dist/js-yaml.mjs",
|
29 | "exports": {
|
30 | ".": {
|
31 | "import": "./dist/js-yaml.mjs",
|
32 | "require": "./index.js"
|
33 | },
|
34 | "./package.json": "./package.json"
|
35 | },
|
36 | "scripts": {
|
37 | "lint": "eslint .",
|
38 | "test": "npm run lint && mocha",
|
39 | "coverage": "npm run lint && nyc mocha && nyc report --reporter html",
|
40 | "demo": "npm run lint && node support/build_demo.js",
|
41 | "gh-demo": "npm run demo && gh-pages -d demo -f",
|
42 | "browserify": "rollup -c support/rollup.config.js",
|
43 | "prepublishOnly": "npm run gh-demo"
|
44 | },
|
45 | "unpkg": "dist/js-yaml.min.js",
|
46 | "jsdelivr": "dist/js-yaml.min.js",
|
47 | "dependencies": {
|
48 | "argparse": "^2.0.1"
|
49 | },
|
50 | "devDependencies": {
|
51 | "@rollup/plugin-commonjs": "^17.0.0",
|
52 | "@rollup/plugin-node-resolve": "^11.0.0",
|
53 | "ansi": "^0.3.1",
|
54 | "benchmark": "^2.1.4",
|
55 | "codemirror": "^5.13.4",
|
56 | "eslint": "^7.0.0",
|
57 | "fast-check": "^2.8.0",
|
58 | "gh-pages": "^3.1.0",
|
59 | "mocha": "^8.2.1",
|
60 | "nyc": "^15.1.0",
|
61 | "rollup": "^2.34.1",
|
62 | "rollup-plugin-node-polyfills": "^0.2.1",
|
63 | "rollup-plugin-terser": "^7.0.2",
|
64 | "shelljs": "^0.8.4"
|
65 | }
|
66 | }
|