.gitignore added
[dotfiles/.git] / .config / coc / extensions / node_modules / coc-prettier / node_modules / table / node_modules / ajv / package.json
1 {
2   "name": "ajv",
3   "version": "8.0.1",
4   "description": "Another JSON Schema Validator",
5   "main": "dist/ajv.js",
6   "types": "dist/ajv.d.ts",
7   "files": [
8     "lib/",
9     "dist/",
10     "scripts/",
11     ".tonic_example.js"
12   ],
13   "scripts": {
14     "eslint": "eslint \"lib/**/*.ts\" \"spec/**/*.*s\" scripts --ignore-pattern spec/JSON-Schema-Test-Suite",
15     "prettier:write": "prettier --write \"./**/*.{json,yaml,js,ts}\"",
16     "prettier:check": "prettier --list-different \"./**/*.{json,yaml,js,ts}\"",
17     "test-spec": "cross-env TS_NODE_PROJECT=spec/tsconfig.json mocha -r ts-node/register \"spec/**/*.spec.{ts,js}\" -R dot -g \\(.recursiveRef.with.no..recursiveAnchor\\|.dynamicRef.with.no..dynamicAnchor\\).in.the.initial.target.schema.resource -i",
18     "test-codegen": "nyc cross-env TS_NODE_PROJECT=spec/tsconfig.json mocha -r ts-node/register 'spec/codegen.spec.ts' -R spec",
19     "test-debug": "npm run test-spec -- --inspect-brk",
20     "test-cov": "nyc npm run test-spec",
21     "bundle": "rm -rf bundle && node ./scripts/bundle.js ajv ajv7 ajv7 && node ./scripts/bundle.js 2019 ajv2019 ajv2019 && node ./scripts/bundle.js jtd ajvJTD ajvJTD",
22     "build": "rm -rf dist && tsc && cp -r lib/refs dist && rm dist/refs/json-schema-2019-09/index.ts && rm dist/refs/json-schema-2020-12/index.ts && rm dist/refs/jtd-schema.ts",
23     "json-tests": "rm -rf spec/_json/*.js && node scripts/jsontests",
24     "test-karma": "karma start",
25     "test-browser": "rm -rf .browser && npm run bundle && scripts/prepare-tests && karma start",
26     "test-all": "npm run test-cov && if-node-version 12 npm run test-browser",
27     "test": "npm run json-tests && npm run prettier:check && npm run eslint && npm link && npm link ajv && npm run test-cov",
28     "test-ci": "AJV_FULL_TEST=true npm test",
29     "prepublish": "npm run build",
30     "benchmark": "npm i && npm run build && npm link && cd ./benchmark && npm link ajv && npm i && node ./jtd",
31     "docs:dev": "./scripts/prepare-site && vuepress dev docs",
32     "docs:build": "./scripts/prepare-site && vuepress build docs"
33   },
34   "nyc": {
35     "exclude": [
36       "**/spec/**",
37       "node_modules"
38     ],
39     "reporter": [
40       "lcov",
41       "text-summary"
42     ]
43   },
44   "repository": {
45     "type": "git",
46     "url": "https://github.com/ajv-validator/ajv.git"
47   },
48   "keywords": [
49     "JSON",
50     "schema",
51     "validator",
52     "validation",
53     "jsonschema",
54     "json-schema",
55     "json-schema-validator",
56     "json-schema-validation"
57   ],
58   "author": "Evgeny Poberezkin",
59   "license": "MIT",
60   "bugs": {
61     "url": "https://github.com/ajv-validator/ajv/issues"
62   },
63   "homepage": "https://github.com/ajv-validator/ajv",
64   "tonicExampleFilename": ".tonic_example.js",
65   "dependencies": {
66     "fast-deep-equal": "^3.1.1",
67     "json-schema-traverse": "^1.0.0",
68     "require-from-string": "^2.0.2",
69     "uri-js": "^4.2.2"
70   },
71   "devDependencies": {
72     "@ajv-validator/config": "^0.3.0",
73     "@types/chai": "^4.2.12",
74     "@types/mocha": "^8.0.3",
75     "@types/node": "^14.0.27",
76     "@types/require-from-string": "^1.2.0",
77     "@typescript-eslint/eslint-plugin": "^3.8.0",
78     "@typescript-eslint/parser": "^3.8.0",
79     "@vuepress/shared-utils": "^1.8.2",
80     "ajv-formats": "^2.0.0",
81     "browserify": "^17.0.0",
82     "chai": "^4.0.1",
83     "cross-env": "^7.0.2",
84     "dayjs": "^1.10.4",
85     "dayjs-plugin-utc": "^0.1.2",
86     "eslint": "^7.8.1",
87     "eslint-config-prettier": "^7.0.0",
88     "glob": "^7.0.0",
89     "husky": "^5.0.9",
90     "if-node-version": "^1.0.0",
91     "jimp": "^0.16.1",
92     "js-beautify": "^1.7.3",
93     "json-schema-test": "^2.0.0",
94     "karma": "^5.0.0",
95     "karma-chrome-launcher": "^3.0.0",
96     "karma-mocha": "^2.0.0",
97     "lint-staged": "^10.2.11",
98     "mocha": "^8.0.1",
99     "node-fetch": "^2.6.1",
100     "nyc": "^15.0.0",
101     "prettier": "^2.0.5",
102     "terser": "^5.2.1",
103     "ts-node": "^9.0.0",
104     "tsify": "^5.0.2",
105     "typescript": "^4.2.0",
106     "vuepress": "^1.8.2"
107   },
108   "collective": {
109     "type": "opencollective",
110     "url": "https://opencollective.com/ajv"
111   },
112   "funding": {
113     "type": "github",
114     "url": "https://github.com/sponsors/epoberezkin"
115   },
116   "prettier": "@ajv-validator/config/prettierrc.json",
117   "husky": {
118     "hooks": {
119       "pre-commit": "lint-staged && npm test"
120     }
121   },
122   "lint-staged": {
123     "*.{json,yaml,js,ts}": "prettier --write"
124   }
125 }