mirror of
https://github.com/h5bp/html5-boilerplate.git
synced 2026-01-10 07:08:02 -05:00
* feat(build): parcel * feat(parcel): gulp & tests * build(parcel): exclude package-lock * build(parcel): add private field to prevent accident npm publish
22 lines
435 B
JSON
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"
|
|
}
|
|
}
|