1
Fork 0
defiler/package.json
2018-10-11 10:54:22 -04:00

39 lines
730 B
JSON

{
"name": "defiler",
"version": "1.0.0",
"description": "A small, strange building block",
"keywords": [
"build",
"framework",
"async",
"watch"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"files": [
"dist"
],
"engines": {
"node": "^8.2 || >=10.4"
},
"repository": {
"type": "git",
"url": "https://github.com/Conduitry/defiler.git"
},
"author": "Conduitry",
"license": "MIT",
"bugs": {
"url": "https://github.com/Conduitry/defiler/issues"
},
"homepage": "https://conduitry.io/defiler",
"devDependencies": {
"rollup": "*",
"typescript": "*",
"@types/node": "*"
},
"scripts": {
"build": "tsc && rollup -c",
"dev": "rollup -cw",
"prepare": "npm run build"
}
}