1
Fork 0
defiler/package.json

40 lines
730 B
JSON
Raw Normal View History

2017-04-20 16:10:29 -04:00
{
"name": "defiler",
2018-10-11 10:54:22 -04:00
"version": "1.0.0",
2017-04-20 16:10:29 -04:00
"description": "A small, strange building block",
"keywords": [
"build",
"framework",
"async",
"watch"
],
"main": "./dist/index.cjs.js",
2017-04-29 02:23:10 -04:00
"module": "./dist/index.es.js",
"files": [
"dist"
],
"engines": {
"node": "^8.2 || >=10.4"
},
2017-04-20 16:10:29 -04:00
"repository": {
"type": "git",
"url": "https://github.com/Conduitry/defiler.git"
},
"author": "Conduitry",
"license": "MIT",
"bugs": {
"url": "https://github.com/Conduitry/defiler/issues"
},
2018-09-06 14:54:53 -04:00
"homepage": "https://conduitry.io/defiler",
"devDependencies": {
2018-06-12 18:15:53 -04:00
"rollup": "*",
"typescript": "*",
"@types/node": "*"
},
"scripts": {
2018-10-02 19:37:14 -04:00
"build": "tsc && rollup -c",
"dev": "rollup -cw",
2018-10-02 18:41:41 -04:00
"prepare": "npm run build"
}
2017-04-20 16:10:29 -04:00
}