-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.85 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
{
"name": "hvml",
"version": "0.0.3",
"description": "HVML Parser for JavaScript",
"main": "hvml.js",
"scripts": {
"test": "jest --verbose",
"test-dev": "jest --watch --verbose",
"test-hvml": "jest --watch -t '\\bHVML\\b' --verbose",
"test-xsd": "jest --watch -t 'HVML Schema Definition' --verbose",
"test-video": "jest --watch --verbose -t 'Video'",
"coverage": "jest --coverage",
"codecov": "./node_modules/.bin/codecov",
"xsd": "xmllint --nowarning --noout --schema xsd/hvml.xsd examples/hvml.xml",
"rng": "xmllint --nowarning --noout --relaxng rng/hvml.rng examples/hvml.xml",
"rng2xsd": "java -jar ./jing-trang/build/trang.jar -I rng -O xsd rng/hvml.rng xsd/hvml.xsd",
"jing-trang-build": "cd jing-trang && ./ant",
"trang": "java -jar ./jing-trang/build/trang.jar",
"dist": "yarn run test && npm-minify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RedBlueVideo/hvml.git"
},
"keywords": [
"hvml",
"hypervideo",
"hypermedia",
"video",
"semantic web",
"annotations"
],
"author": "Hugh Guiney",
"license": "LGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/RedBlueVideo/hvml/issues"
},
"homepage": "https://github.com/RedBlueVideo/hvml#readme",
"dependencies": {
"lodash.set": "^4.3.2",
"md2jsonml": "^2.0.0",
"xml-trident": "^1.0.2"
},
"devDependencies": {
"codecov": "^3.3.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-hughx": "^0.0.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-lodash": "^5.1.0",
"eslint-plugin-you-dont-need-lodash-underscore": "^6.4.0",
"jest": "^24.7.1",
"npm-minify": "^0.0.2",
"recursive-copy": "^2.0.10",
"rimraf": "^2.6.3",
"skip-if": "^1.1.1"
},
"optionalDependencies": {
"libxmljs": "^0.19.5"
}
}