-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
62 lines (62 loc) · 2.16 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": "eq-schema-validator",
"version": "1.0.0",
"description": "An API for validating survey schemas.",
"main": "gulpfile.js",
"directories": {
"doc": "doc",
"test": "tests"
},
"type": "module",
"scripts": {
"test": "mocha --require @babel/register ajv/tests/*.js --exit",
"lint": "npm run lint:schemas && npm run lint:test-schemas && npm run lint:ajv",
"start": "DEBUG=ajv-schema-validator node ajv/app.js &",
"stop": "kill -9 $(lsof -ti:5002)",
"lint:schemas": "prettier --check \"schemas/**/*.json\" && eslint \"schemas/**/*.json\"",
"lint:test-schemas": "prettier --check \"tests/schemas/**/*.json\" && eslint \"tests/schemas/**/*.json\"",
"lint:ajv": "prettier --check \"ajv/**/*.js\" && eslint \"ajv/**/*.js\"",
"format": "npm run format:schemas && npm run format:test-schemas && npm run format:ajv",
"format:schemas": "prettier \"schemas/**/*.json\" --write && eslint --fix \"schemas/**/*.json\"",
"format:test-schemas": "prettier \"tests/schemas/**/*.json\" --write && eslint --fix \"tests/schemas/**/*.json\"",
"format:ajv": "prettier \"ajv/**/*.js\" --write && eslint --fix \"ajv/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/ONSdigital/eq-schema-validator.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/ONSdigital/eq-schema-validator/issues"
},
"homepage": "https://github.com/ONSdigital/eq-schema-validator#readme",
"dependencies": {
"ajv": "^8.11.0",
"axios": "*",
"debug": "^4.3.4",
"express": "*",
"glob": "*"
},
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0",
"@babel/register": "^7.0.0",
"chai": "*",
"chai-http": "*",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-chai-friendly": "^0.7.2",
"eslint-plugin-import": "^2.24.2",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.0",
"eslint-plugin-security": "^1.4.0",
"fancy-log": "^1.3.3",
"mocha": "*",
"nodemon": "*",
"prettier": "^2.4.1"
},
"prettier": {}
}