This repository has been archived by the owner on Sep 21, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 2.06 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": "micro-mqtt",
"version": "1.0.0",
"description": "A lightweight MQTT client",
"main": "./modules/micro-mqtt.ts",
"scripts": {
"info": "npm-scripts-info",
"pretest": "npm run clean && npm run tslint && npm run compile",
"clean": "rimraf ./coverage ./bin",
"tslint": "tslint --project tsconfig.json ./src/**/*.ts",
"compile": "tsc --pretty",
"?test": "Run TSLint, compile TypeScript, run unit tests, and create coverage reports.",
"test": "jest --verbose --coverage --detectOpenHandles",
"?test:watch": "Watch for changed compiled TypeScript files and perform unit tests. Press Ctrl-Shift-B in VSCode to compile TypeScript.",
"test:watch": "jest --watch",
"?deploy": "Runs all tests and copies the micro-mqtt.js module to the Espruino Web IDE project.",
"deploy": "npm run test && ncp ./bin/module/micro-mqtt.js ./espruino/modules/micro-mqtt.js",
"?cleanall": "Removes the node_modules, all compiled TypeScript files, and coverage reports.",
"cleanall": "rimraf ./coverage ./bin ./node_modules"
},
"repository": {
"type": "git",
"url": "https://github.com/rovale/micro-mqtt.git"
},
"keywords": [
"mqtt",
"espruino"
],
"author": "R. van Leuwen",
"license": "MIT",
"bugs": {
"url": "https://github.com/rovale/micro-mqtt/issues"
},
"homepage": "https://github.com/rovale/micro-mqtt#readme",
"devDependencies": {
"@types/chai": "4.1.7",
"@types/jest": "^24.0.0",
"@types/node": "11.13.8",
"@types/sinon": "7.0.6",
"babel-eslint": "^10.0.1",
"chai": "4.2.0",
"coveralls": "3.0.3",
"eslint": "5.9.0",
"eslint-config-airbnb": "17.1.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1",
"jest": "^23.6.0",
"ncp": "2.0.0",
"npm-scripts-info": "0.3.9",
"rimraf": "2.6.3",
"sinon": "7.1.1",
"ts-jest": "^23.10.4",
"tslint": "5.11.0",
"tslint-microsoft-contrib": "5.2.1",
"tsutils": "3.6.0",
"typescript": "3.1.6"
},
"dependencies": {
"net": "1.0.2"
}
}