-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.21 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
{
"name": "graph-rdfa-processor",
"version": "2.0.0",
"description": "Green turtle GraphRdfaProcessor extracted and available as a commonJS module",
"main": "dist/index.js",
"module": "src/index.js",
"scripts": {
"test": "mocha --require @babel/register --exit",
"prepare": "rm -rf dist && babel src --out-dir dist",
"postversion": "git push && git push --tags"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": "> 0.25%, not dead"
}
]
],
"plugins": [
"add-module-exports"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/science-periodicals/graph-rdfa-processor.git"
},
"keywords": [
"RDFa"
],
"author": "Sebastien Ballesteros",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/science-periodicals/graph-rdfa-processor/issues"
},
"homepage": "https://github.com/science-periodicals/graph-rdfa-processor#readme",
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@babel/register": "^7.5.5",
"babel-plugin-add-module-exports": "^1.0.2",
"jsdom": "^9.11.0",
"mocha": "^6.2.0"
}
}