-
Notifications
You must be signed in to change notification settings - Fork 277
/
package.json
41 lines (41 loc) · 985 Bytes
/
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
{
"name": "@jsonresume/schema",
"version": "1.1.2",
"description": "JSON Resume Schema",
"private": false,
"main": "validator.js",
"scripts": {
"test": "npm run validate && npm run test-units",
"validate": "ajv validate -s node_modules/json-metaschema/draft-07-schema -d schema",
"test-units": "tape **/*.spec.js | tap-spec",
"preversion": "npm test",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git://github.com/jsonresume/resume-schema.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jsonresume/resume-schema/issues"
},
"files": [
"sample.resume.json",
"sample.job.json",
"schema.json",
"job-schema.json",
"validator.js"
],
"dependencies": {
"jsonschema": "^1.4.1"
},
"devDependencies": {
"ajv-cli": "^3.3.0",
"json-metaschema": "^1.3.0",
"tap-spec": "^5.0.0",
"tape": "^4.16.2"
},
"engines": {
"node": ">=20"
}
}