aboutsummaryrefslogtreecommitdiff
path: root/package.json
diff options
context:
space:
mode:
authorUri Shaked2019-11-21 19:40:02 +0200
committerUri Shaked2019-11-21 20:05:23 +0200
commitb9dfd552a62a46449532d49adc0773589076c808 (patch)
tree8eb1ec1f49e7b8e097a51ee6bf266a609eafac43 /package.json
parentchore: release 0.2.0 (diff)
downloadavr8js-b9dfd552a62a46449532d49adc0773589076c808.tar.gz
avr8js-b9dfd552a62a46449532d49adc0773589076c808.tar.bz2
avr8js-b9dfd552a62a46449532d49adc0773589076c808.zip
feat: add blink demo
Diffstat (limited to 'package.json')
-rw-r--r--package.json7
1 files changed, 7 insertions, 0 deletions
diff --git a/package.json b/package.json
index d6a4839..b311c6e 100644
--- a/package.json
+++ b/package.json
@@ -8,7 +8,9 @@
"license": "MIT",
"scripts": {
"build": "rimraf dist && tsc",
+ "build:demo": "parcel build demo/src/index.html -d demo/dist",
"prepare": "npm run build",
+ "start": "parcel demo/src/index.html -d demo/build",
"lint": "tslint --project tsconfig.json",
"test": "jest"
},
@@ -21,6 +23,7 @@
"husky": "^3.0.9",
"jest": "^24.9.0",
"lint-staged": "^9.4.2",
+ "parcel-bundler": "^1.12.4",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"ts-jest": "^24.1.0",
@@ -43,5 +46,9 @@
"engines": {
"node": ">= 8.0.0",
"npm": ">= 5.0.0"
+ },
+ "dependencies": {},
+ "alias": {
+ "avr8js": "./src"
}
}