1
Fork 0
defiler/package.json

40 lines
762 B
JSON
Raw Normal View History

2017-04-20 16:10:29 -04:00
{
"name": "defiler",
2018-07-19 23:19:19 -04:00
"version": "0.18.1",
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 18:41:41 -04:00
"build": "tsc && rollup -c rollup/prod.js",
2018-06-28 23:33:07 -04:00
"dev": "rollup -c rollup/dev.js -w",
2018-10-02 18:41:41 -04:00
"prepare": "npm run build"
}
2017-04-20 16:10:29 -04:00
}