-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.38 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
{
"name": "jsonld-rdfa-parser",
"version": "2.0.0",
"description": "A custom RDFa parser to be registered with jsonld.js registerRDFParser method",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"test": "mocha --compilers js:babel-register",
"prepublish": "rm -rf dist && babel src --out-dir dist",
"postversion": "git push && git push --tags"
},
"prettier": {
"singleQuote": true
},
"eslintConfig": {
"extends": "@scipe"
},
"repository": {
"type": "git",
"url": "git+https://github.com/science-periodicals/jsonld-rdfa-parser.git"
},
"keywords": [
"JSON-LD",
"RDFa"
],
"author": "Sebastien Ballesteros",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/science-periodicals/jsonld-rdfa-parser/issues"
},
"homepage": "https://github.com/science-periodicals/jsonld-rdfa-parser#readme",
"dependencies": {
"graph-rdfa-processor": "^1.3.0",
"is-url": "^1.2.2",
"jsdom": "^13.2.0",
"xmldom": "^0.1.27"
},
"devDependencies": {
"@scipe/eslint-config": "^1.0.0",
"babel-cli": "^6.23.0",
"babel-plugin-add-module-exports": "0.2.1",
"babel-preset-es2015": "^6.22.0",
"babel-register": "^6.23.0",
"jsonld": "0.4.11",
"mocha": "^3.2.0",
"prettier": "^1.18.2"
},
"browser": {
"xmldom": "./dist/browser/xmldom.js",
"jsdom": "./dist/browser/jsdom.js"
}
}