1
Fork 0
defiler/package.json

43 lines
843 B
JSON
Raw Normal View History

2017-04-20 20:10:29 +00:00
{
"name": "defiler",
2020-10-26 06:48:34 +00:00
"version": "2.0.1",
2017-04-20 20:10:29 +00:00
"description": "A small, strange building block",
"keywords": [
"build",
"framework",
"async",
"watch"
],
2018-11-13 11:03:50 +00:00
"main": "dist/index.cjs.js",
2018-11-17 14:23:51 +00:00
"module": "dist/index.esm.js",
2018-11-13 11:03:50 +00:00
"types": "types/index.d.ts",
"files": [
2018-11-13 11:03:50 +00:00
"dist",
"types"
],
"engines": {
2020-10-26 06:36:09 +00:00
"node": "^12.17 || >=13.10"
},
2017-04-20 20:10:29 +00:00
"repository": {
"type": "git",
"url": "https://github.com/Conduitry/defiler.git"
},
"author": "Conduitry",
"license": "MIT",
"bugs": {
"url": "https://github.com/Conduitry/defiler/issues"
},
2020-05-31 23:26:02 +00:00
"homepage": "https://conduitry.dev/defiler",
"devDependencies": {
"@types/node": "=12",
2020-05-31 23:24:41 +00:00
"rollup": "^2",
"rollup-plugin-cheap-ts": "Conduitry/rollup-plugin-cheap-ts#semver:^1",
"typescript": "^4"
},
"scripts": {
2018-11-10 18:02:46 +00:00
"build": "rollup -c",
2018-10-02 23:37:14 +00:00
"dev": "rollup -cw",
2018-10-02 22:41:41 +00:00
"prepare": "npm run build"
}
2017-04-20 20:10:29 +00:00
}