-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "iottalk-js",
"version": "2.3.3",
"description": "IoTtalk javascript library SDK",
"main": "iottalkjs.js",
"directories": {
"example": "examples"
},
"scripts": {
"start": "npx webpack -w --mode development",
"build": "npm run build:node && npm run build:web",
"build:node": "npx babel src --out-dir build-node && npx ncc build build-node/index.js -o build-node/dist && mv build-node/dist/index.js build-node/dist/iottalkjs.js",
"build:web": "npx webpack",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "yarn run eslint src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/IoTtalk/iottalk-js.git"
},
"keywords": [
"iottalk"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/IoTtalk/iottalk-js/issues"
},
"homepage": "https://github.com/IoTtalk/iottalk-js#readme",
"dependencies": {
"mqtt": "^4.2.6",
"superagent": "^6.1.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.2.2",
"@babel/preset-env": "^7.4.1",
"@zeit/ncc": "^0.16.1",
"babel-loader": "^8.0.5",
"eslint": "^7.24.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"webpack": "^4.29.6",
"webpack-cli": "^3.3.0"
}
}