add rollup as devDependency; use pnpm; other adjustments

This commit is contained in:
Conduitry 2018-04-04 18:27:29 -04:00
parent 053353775f
commit b28b0fe5d1
2 changed files with 19 additions and 3 deletions

3
.gitignore vendored
View File

@ -1 +1,4 @@
/dist/
/node_modules/
/package-locak.json
/shrinkwrap.yaml

View File

@ -2,10 +2,17 @@
"name": "defiler",
"version": "0.15.3",
"description": "A small, strange building block",
"keywords": ["build", "framework", "async", "watch"],
"keywords": [
"build",
"framework",
"async",
"watch"
],
"main": "./dist/index.cjs.js",
"module": "./dist/index.es.js",
"files": ["dist"],
"files": [
"dist"
],
"engines": {
"node": ">=8"
},
@ -18,5 +25,11 @@
"bugs": {
"url": "https://github.com/Conduitry/defiler/issues"
},
"homepage": "https://cndtr.io/defiler/"
"homepage": "https://cndtr.io/defiler/",
"devDependencies": {
"rollup": "*"
},
"scripts": {
"build": "rollup -c"
}
}