Skip to content

Commit 5d4b37f

Browse files
committed
[npm] Set up package.json and some structure
1 parent ade229b commit 5d4b37f

File tree

3 files changed

+28
-0
lines changed

3 files changed

+28
-0
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -25,3 +25,6 @@ build/Release
2525
# Dependency directory
2626
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git
2727
node_modules
28+
29+
# Compiled files
30+
/build/

package.json

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"name": "plasma-dash",
3+
"version": "0.0.1",
4+
"description": "A small server that reacts to Amazon Dash buttons on your WiFi network",
5+
"main": "build/PlasmaDash.js",
6+
"engines": {
7+
"node": ">=4"
8+
},
9+
"scripts": {
10+
"test": "jest"
11+
},
12+
"repository": {
13+
"type": "git",
14+
"url": "git+https://github.com/ide/plasma-dash.git"
15+
},
16+
"keywords": [
17+
"dash-button"
18+
],
19+
"author": "James Ide",
20+
"license": "MIT",
21+
"bugs": {
22+
"url": "https://github.com/ide/plasma-dash/issues"
23+
},
24+
"homepage": "https://github.com/ide/plasma-dash#readme"
25+
}

src/PlasmaDash.js

Whitespace-only changes.

0 commit comments

Comments
 (0)