-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
62 lines (62 loc) · 2.39 KB
/
package.json
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
{
"name": "chai-json-schema-ajv",
"version": "5.2.4",
"description": "A chai plugin for validate json schema.",
"main": "index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"chai": "^4.2.0",
"clear-module": "^2.1.0",
"coveralls": "^3.1.0",
"eslint": "^7.5.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"mocha": "^8.0.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.1.0"
},
"scripts": {
"lint": "eslint src test",
"test": "npm run lint && npm run test-v4 && npm run test-v5 && npm run test-v6 && npm run test-v7 && npm run test-v8 && npm run test-latest",
"test-v4": "npm i ajv@4 --no-save && AJV_VERSION=v4 nyc mocha test/unit",
"test-v5": "npm i ajv@5 --no-save && AJV_VERSION=v5 nyc mocha test/unit",
"test-v6": "npm i ajv@6 --no-save && AJV_VERSION=v6 nyc mocha test/unit",
"test-v7": "npm i ajv@7 --no-save && AJV_VERSION=v7 nyc mocha test/unit",
"test-v8": "npm run test-v8-default && npm run test-v8-2019 && npm run test-v8-2020",
"test-v8-default": "npm i ajv@8 --no-save && AJV_VERSION=v8 nyc mocha test/unit",
"test-v8-2019": "npm i ajv@8 --no-save && AJV_VERSION=v8-2019 nyc mocha test/unit",
"test-v8-2020": "npm i ajv@8 --no-save && AJV_VERSION=v8-2020 nyc mocha test/unit",
"test-latest": "npm i ajv@latest --no-save && nyc mocha test/unit",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"test-node6": "docker run --rm -v ${PWD}:/app -w /app node:6-alpine npm i eslint@6 --no-save && npm test",
"test-node8": "docker run --rm -v ${PWD}:/app -w /app node:8-alpine npm i eslint@6 --no-save && npm test",
"test-node12": "docker run --rm -v ${PWD}:/app -w /app node:12-alpine npm test",
"test-node14": "docker run --rm -v ${PWD}:/app -w /app node:14-alpine npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/up9cloud/chai-json-schema-ajv.git"
},
"keywords": [
"chai",
"chai-plugin",
"json-schema",
"assert",
"test",
"schema",
"ajv"
],
"author": "up9cloud (https://github.com/up9cloud)",
"license": "MIT",
"bugs": {
"url": "https://github.com/up9cloud/chai-json-schema-ajv/issues"
},
"homepage": "https://github.com/up9cloud/chai-json-schema-ajv#readme",
"engines": {
"node": ">=10.0.0"
}
}