1
Fork 0
defiler/package.json

43 lines
835 B
JSON
Raw Normal View History

2017-04-20 16:10:29 -04:00
{
"name": "defiler",
2019-06-08 08:33:58 -04:00
"version": "1.0.2",
2017-04-20 16:10:29 -04:00
"description": "A small, strange building block",
"keywords": [
"build",
"framework",
"async",
"watch"
],
2018-11-13 06:03:50 -05:00
"main": "dist/index.cjs.js",
2018-11-17 09:23:51 -05:00
"module": "dist/index.esm.js",
2018-11-13 06:03:50 -05:00
"types": "types/index.d.ts",
"files": [
2018-11-13 06:03:50 -05:00
"dist",
"types"
],
"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"
},
2019-05-31 11:31:20 -04:00
"homepage": "https://cndtr.dev/defiler",
"devDependencies": {
"rollup": "^1",
"rollup-plugin-cheap-ts": "Conduitry/rollup-plugin-cheap-ts#semver:^1",
"typescript": "^3",
2019-09-13 12:24:44 -04:00
"@types/node": "=8"
},
"scripts": {
2018-11-10 13:02:46 -05:00
"build": "rollup -c",
2018-10-02 19:37:14 -04:00
"dev": "rollup -cw",
2018-10-02 18:41:41 -04:00
"prepare": "npm run build"
}
2017-04-20 16:10:29 -04:00
}