Files
html5-boilerplate/dist/package.json
Vlad Tansky 6862fd310d feat(build): parcel (#2227) (#2229)
* feat(build): parcel

* feat(parcel): gulp & tests

* build(parcel): exclude package-lock

* build(parcel): add private field to prevent accident npm publish
2020-05-08 09:40:28 -04:00

22 lines
435 B
JSON

{
"name": "html5-boilerplate",
"version": "1.0.0",
"description": "",
"main": "index.js",
"private": true,
"directories": {
"doc": "doc"
},
"scripts": {
"start": "npm run build",
"build": "parcel build index.html",
"dev": "parcel index.html",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"parcel-bundler": "^1.12.4"
}
}