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
/
package.json
63 lines (63 loc) · 2.11 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "smartflat-core",
"version": "0.0.1",
"description": "Loads and connects smartflat modules.",
"main": "build/cli.js",
"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": "node node_modules/minimalism/source",
"start": "node build/server",
"cli": "node build/cli --config ../config.json",
"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"
},
"bin": {
"smartflat": "build/cli.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dodekeract/smartflat-core.git"
},
"keywords": [
"smartflat",
"smarthome",
"iot",
"internet-of-things",
"server"
],
"author": "Florian Wendelborn",
"license": "MIT",
"bugs": {
"url": "https://github.com/dodekeract/smartflat-core/issues"
},
"homepage": "https://github.com/dodekeract/smartflat-core#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"
},
"dependencies": {
"babel-polyfill": "^6.13.0",
"koa": "^1.2.1",
"koa-router": "^5.4.0",
"minimalism": "0.0.3",
"shelljs": "^0.7.0",
"smartflat-device": "0.0.1",
"yargs": "^4.7.0"
},
"minimalism": {
".gitignore": "node_modules/\nnpm-debug.log\n.babelrc\n.nyc_output/\n.gitignore\n.npmignore",
".npmignore": "node_modules/\nsource/\nnpm-debug.log\n.gitignore\n.babelrc\n.nyc_output/\ntest/",
".babelrc": "{ \"presets\": [\"es2015\"] }"
}
}