schemas/package.json
Sebastian Kippe 56d4da5ab1 Support browserification of module
In order for browserify/babel to work with this module and ES6 imports,
we need a little helper package that enables readFileSync
transformation. This only works with static paths however, so we need
to change these, too.
2017-06-05 20:14:38 +02:00

30 lines
594 B
JSON

{
"name": "kosmos-schemas",
"version": "1.0.0",
"description": "JSON-LD schemas for Kosmos data formats",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"kosmos",
"ipfs",
"remotestorage"
],
"author": "Kosmos Contributors <mail@kosmos.org>",
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/67P/kosmos-schemas.git"
},
"devDependencies": {
"brfs-babel": "^1.0.0"
},
"browserify": {
"transform": [
"brfs-babel"
]
}
}