-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.47 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
{
"name": "bolt-iot-wrapper",
"version": "1.2.0",
"description": "bolt iot api wrappers",
"main": "dist/exports.js",
"scripts": {
"jest": "jest",
"test": "npm run jest && npm run build",
"docs": "rimraf docs && typedoc",
"build": "rimraf dist && tsc && npm run buildBrowser",
"buildBrowser": "rimraf umd && rollup -c",
"release": "np"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pranaydutta89/bolt-iot-wrapper.git"
},
"keywords": [
"bolt iot",
"iot",
"api",
"wrapper",
"javascript",
"cloud"
],
"author": "Pranay Dutta",
"license": "ISC",
"bugs": {
"url": "https://github.com/pranaydutta89/bolt-iot-wrapper/issues"
},
"homepage": "https://github.com/pranaydutta89/bolt-iot-wrapper#readme",
"devDependencies": {
"@types/jest": "24.0.15",
"@types/node-fetch": "2.3.7",
"jest": "24.8.0",
"np": "5.0.3",
"rimraf": "2.6.3",
"rollup": "1.15.6",
"rollup-plugin-commonjs": "10.0.0",
"rollup-plugin-node-resolve": "5.0.3",
"rollup-plugin-typescript": "1.0.1",
"rollup-plugin-uglify": "6.0.2",
"ts-jest": "24.0.2",
"tslint": "5.17.0",
"tslint-config-airbnb": "5.11.1",
"typedoc": "0.14.2",
"typescript": "3.5.2"
},
"dependencies": {
"core-js": "3.1.4",
"node-fetch": "2.6.0",
"promise-polyfill": "8.1.3",
"whatwg-fetch": "2.0.4"
},
"files": [
"umd",
"dist"
],
"publishConfig": {
"access": "public"
}
}