forked from science-periodicals/jsonld-rdfa-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.06 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
{
"name": "jsonld-rdfa-parser",
"version": "1.3.0",
"description": "A custom RDFa parser to be registered with jsonld.js registerRDFParser method",
"main": "dist/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha --compilers js:babel-register",
"prepublish": "rm -rf dist && ./node_modules/.bin/babel src --out-dir dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/scienceai/jsonld-rdfa-parser.git"
},
"keywords": [
"JSON-LD",
"RDFa"
],
"author": "Sebastien Ballesteros",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/scienceai/jsonld-rdfa-parser/issues"
},
"homepage": "https://github.com/scienceai/jsonld-rdfa-parser#readme",
"dependencies": {
"graph-rdfa-processor": "^1.1.0",
"is-url": "^1.2.1",
"jsdom": "^8.0.1",
"xmldom": "^0.1.21"
},
"devDependencies": {
"babel-cli": "^6.4.5",
"babel-plugin-add-module-exports": "^0.1.2",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"jsonld": "^0.4.5",
"mocha": "^2.3.4"
}
}