-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "hemtjanst",
"version": "0.0.9",
"description": "Hemtjänst library",
"author": {
"name": "bonan",
"email": "npm@bonan.se"
},
"bugs": {
"url": "https://github.com/hemtjanst/hemtjanst-js/issues"
},
"contributors": [
{
"name": "bonan",
"email": "npm@bonan.se"
}
],
"dependencies": {},
"devDependencies": {
"@types/node": "^10.5.2",
"awesome-typescript-loader": "^5.2.0",
"debug": "^3.1.0",
"tslint": "^5.11.0",
"typescript": "^2.9.2",
"uglify-js": "^3.4.5",
"webpack": "^4.41.5",
"webpack-cli": "^3.1.0"
},
"homepage": "https://github.com/hemtjanst/hemtjanst-js",
"keywords": [
"tradfri",
"mqtt",
"hemtjanst"
],
"license": "Apache-2.0",
"browser": "dist/main.js",
"main": "index.js",
"scripts": {
"test": "node lib/test.js",
"build": "npm run compile; npm run webpack",
"compile": "node node_modules/typescript/bin/tsc",
"webpack": "node node_modules/webpack/bin/webpack.js lib/main.js --config webpack.config.js --mode production --output-library hemtjanst"
},
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "https://github.com/hemtjanst/hemtjanst-js.git"
}
}