-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
36 lines (36 loc) · 881 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "imba-demo",
"version": "0.0.0",
"description": "Convert HTML to Imba tags",
"scripts": {
"build": "parcel build --public-url '.' src/index.html",
"start": "parcel src/index.html",
"_clean-source": "rimraf src README.md",
"deploy": "gh-pages-deploy",
"predeploy": "npm run build"
},
"keywords": [
"imba",
"html"
],
"author": "David Konsumer <konsumer@jetboystudio.com> (http://konsumer.js.org)",
"license": "MIT",
"devDependencies": {
"gh-pages-deploy": "^0.4.2",
"parcel-bundler": "^1.10.3",
"parcel-plugin-imba": "github:konsumer/parcel-plugin-imba",
"rimraf": "^2.6.2"
},
"dependencies": {
"babel-polyfill": "^6.26.0",
"htmlparser2": "^3.10.0"
},
"gh-pages-deploy": {
"staticpath": "dist",
"commit": "deploy",
"post": [
"_clean-source"
],
"noprompt": true
}
}