-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "microdata-node",
"version": "2.0.0",
"description": "Microdata to json and json-ld parser",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run tsc && npm run jest",
"jest": "jest",
"tsc": "tsc",
"watch:jest": "npm run jest -- -w",
"lint": "semistandard --verbose | snazzy",
"download-tests": "node ./scripts/download-tests.js",
"download-nt-tests": "rm -rf ./test/nt && mkdir ./test/nt && curl http://www.w3.org/2013/N-TriplesTests/TESTS.tar.gz | tar xz -C ./test/nt"
},
"repository": {
"type": "git",
"url": "https://[email protected]/Janpot/microdata-node.git"
},
"keywords": [
"microdata",
"parser"
],
"author": "Jan Potoms",
"license": "MIT",
"bugs": {
"url": "https://github.com/Janpot/microdata-node/issues"
},
"homepage": "https://github.com/Janpot/microdata-node",
"devDependencies": {
"@types/node": "^13.13.5",
"jest": "^26.0.1",
"jsonld": "^3.1.0",
"n3": "^1.3.6",
"request": "^2.51.0",
"semistandard": "^14.2.0",
"snazzy": "^8.0.0",
"typescript": "^3.8.3"
},
"dependencies": {
"domutils": "^2.1.0",
"htmlparser2": "^4.1.0",
"is-absolute-url": "^3.0.3"
}
}