-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.08 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.08 KB
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
{
"name": "fleettrace",
"version": "1.0.0",
"description": "1. Copy the example environment file and set a strong password (do not commit your .env):",
"main": "index.js",
"directories": {
"example": "examples",
"test": "tests"
},
"scripts": {
"schema:validate": "ajv -s contracts/telematics_event.schema.json -d 'contracts/fixtures/valid/*.json' --spec=draft2020 --strict=true --errors=text -c ajv-formats",
"schema:negatives": "ajv test -s contracts/telematics_event.schema.json -d 'contracts/fixtures/invalid/*.json' --spec=draft2020 -c ajv-formats --invalid",
"schema:check": "npm run -s schema:validate && npm run -s schema:negatives"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ashi-Ashish/FleetTrace.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/Ashi-Ashish/FleetTrace/issues"
},
"homepage": "https://github.com/Ashi-Ashish/FleetTrace#readme",
"devDependencies": {
"ajv": "^8.17.1",
"ajv-cli": "^5.0.0",
"ajv-formats": "^3.0.1"
}
}