This repository has been archived by the owner on May 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.56 KB
/
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
37
38
39
40
41
42
43
44
45
{
"name": "smartflat-device",
"version": "0.0.1",
"description": "Implements a generic device API for smartflat.",
"main": "build/",
"scripts": {
"test": "npm run build --silent && nyc --require babel-core/register mocha",
"build": "babel --presets es2015 source/ -d build/",
"prepublish": "npm run build",
"postpublish": "PACKAGE_VERSION=$(cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag $PACKAGE_VERSION && git push --tags",
"postinstall": "echo '{ \"presets\": [\"es2015\"] }' > .babelrc",
"start": "node build/",
"watch": "nodemon --watch source --exec \"npm run build --silent && npm run start --silent\"",
"watch-test": "nodemon --watch source --watch test --exec \"npm run test --silent\"",
"travis": "npm run test && nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dodekeract/smartflat-device.git"
},
"keywords": [
"smartflat",
"smarthome",
"iot",
"internet-of-things",
"device"
],
"author": "Florian Wendelborn",
"license": "MIT",
"bugs": {
"url": "https://github.com/dodekeract/smartflat-device/issues"
},
"homepage": "https://github.com/dodekeract/smartflat-device#readme",
"devDependencies": {
"babel-cli": "^6.8.0",
"babel-core": "^6.8.0",
"babel-preset-es2015": "^6.6.0",
"babel-register": "^6.8.0",
"coveralls": "^2.11.9",
"expect.js": "^0.3.1",
"mocha": "^2.4.5",
"nodemon": "^1.9.2",
"nyc": "^6.4.4"
}
}