-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.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
{
"name": "schemaorg-jsd",
"version": "0.17.1",
"description": "JSON Schema validation for JSON-LD files using Schema.org vocabulary.",
"main": "index.js",
"scripts": {
"build": "rm -rf ./dist/ && gulp build",
"prepublishOnly": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/chharvey/schemaorg-jsd.git"
},
"keywords": [
"json-schema",
"schema-org",
"json-ld"
],
"author": "Chris Harvey <[email protected]> (https://chharvey.github.io/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/chharvey/schemaorg-jsd/issues"
},
"homepage": "https://github.com/chharvey/schemaorg-jsd#readme",
"dependencies": {
"@chharvey/requirejson": "^2.0.0",
"@types/json-schema": "^7.0.2",
"@types/jsonld": "^1.5.4",
"@types/node": "^14.0.23",
"ajv": "^7.0.0"
},
"devDependencies": {
"@types/mocha": "^8.2.0",
"gulp": "^4.0.0",
"gulp-mocha": "^8.0.0",
"gulp-typedoc": "^2.2.1",
"gulp-typescript": "^5.0.0",
"ts-node": "^9.1.1",
"typedoc": "^0.20.0",
"typescript": "~4.2.0"
}
}