aboutsummaryrefslogtreecommitdiff
path: root/node_modules/yaml/package.json
diff options
context:
space:
mode:
authorMinteck <contact@minteck.org>2022-06-04 08:51:01 +0200
committerMinteck <contact@minteck.org>2022-06-04 08:51:01 +0200
commit383285ecd5292bf9a825e05904955b937de84cc9 (patch)
tree0a53b6f02c1604b078044567c03dc1b6c944c8c2 /node_modules/yaml/package.json
downloadequestriadb-383285ecd5292bf9a825e05904955b937de84cc9.tar.gz
equestriadb-383285ecd5292bf9a825e05904955b937de84cc9.tar.bz2
equestriadb-383285ecd5292bf9a825e05904955b937de84cc9.zip
Initial commit
Diffstat (limited to 'node_modules/yaml/package.json')
-rw-r--r--node_modules/yaml/package.json94
1 files changed, 94 insertions, 0 deletions
diff --git a/node_modules/yaml/package.json b/node_modules/yaml/package.json
new file mode 100644
index 0000000..3668323
--- /dev/null
+++ b/node_modules/yaml/package.json
@@ -0,0 +1,94 @@
+{
+ "name": "yaml",
+ "version": "2.0.1",
+ "license": "ISC",
+ "author": "Eemeli Aro <eemeli@gmail.com>",
+ "repository": "github:eemeli/yaml",
+ "description": "JavaScript parser and stringifier for YAML",
+ "keywords": [
+ "YAML",
+ "parser",
+ "stringifier"
+ ],
+ "homepage": "https://eemeli.org/yaml/",
+ "files": [
+ "browser/",
+ "dist/",
+ "util.d.ts",
+ "util.js"
+ ],
+ "type": "commonjs",
+ "main": "./dist/index.js",
+ "browser": {
+ "./dist/index.js": "./browser/index.js",
+ "./dist/util.js": "./browser/dist/util.js",
+ "./util.js": "./browser/dist/util.js"
+ },
+ "exports": {
+ ".": {
+ "node": "./dist/index.js",
+ "default": "./browser/index.js"
+ },
+ "./package.json": "./package.json",
+ "./util": {
+ "node": "./dist/util.js",
+ "default": "./browser/dist/util.js"
+ }
+ },
+ "scripts": {
+ "build": "npm run build:node && npm run build:browser",
+ "build:browser": "rollup -c config/rollup.browser-config.js",
+ "build:node": "rollup -c config/rollup.node-config.js",
+ "clean": "git clean -fdxe node_modules",
+ "lint": "eslint src/",
+ "prettier": "prettier --write .",
+ "prestart": "npm run build:node",
+ "start": "node -i -e 'YAML=require(\"./dist/index.js\")'",
+ "test": "jest --config config/jest.config.js",
+ "test:all": "npm test && npm run test:types && npm run test:dist && npm run test:dist:types",
+ "test:browsers": "cd playground && npm test",
+ "test:dist": "npm run build:node && jest --config config/jest.config.js",
+ "test:dist:types": "tsc --allowJs --moduleResolution node --noEmit --target es5 dist/index.js",
+ "test:types": "tsc --noEmit",
+ "docs:install": "cd docs-slate && bundle install",
+ "docs:deploy": "cd docs-slate && ./deploy.sh",
+ "docs": "cd docs-slate && bundle exec middleman server",
+ "preversion": "npm test && npm run build",
+ "prepublishOnly": "npm run clean && npm test && npm run build"
+ },
+ "browserslist": "defaults, not ie 11",
+ "prettier": {
+ "arrowParens": "avoid",
+ "semi": false,
+ "singleQuote": true,
+ "trailingComma": "none"
+ },
+ "devDependencies": {
+ "@babel/core": "^7.12.10",
+ "@babel/plugin-proposal-class-properties": "^7.12.1",
+ "@babel/plugin-proposal-nullish-coalescing-operator": "^7.12.1",
+ "@babel/plugin-transform-typescript": "^7.12.17",
+ "@babel/preset-env": "^7.12.11",
+ "@rollup/plugin-babel": "^5.2.3",
+ "@rollup/plugin-replace": "^4.0.0",
+ "@rollup/plugin-typescript": "^8.1.1",
+ "@types/jest": "^27.0.1",
+ "@types/node": "^12.20.47",
+ "@typescript-eslint/eslint-plugin": "^5.3.1",
+ "@typescript-eslint/parser": "^5.3.1",
+ "babel-jest": "^27.0.1",
+ "cross-env": "^7.0.3",
+ "eslint": "^8.2.0",
+ "eslint-config-prettier": "^8.1.0",
+ "fast-check": "^2.12.0",
+ "jest": "^27.0.1",
+ "jest-ts-webcompat-resolver": "^1.0.0",
+ "prettier": "^2.2.1",
+ "rollup": "^2.38.2",
+ "tslib": "^2.1.0",
+ "typescript": "^4.3.5"
+ },
+ "engines": {
+ "node": ">= 14"
+ }
+}