-
Notifications
You must be signed in to change notification settings - Fork 81
/
package.json
94 lines (94 loc) · 1.94 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "farmbot",
"version": "15.8.7",
"description": "Farmbot Javascript client.",
"browserslist": "defaults",
"scripts": {
"build": "./build.sh",
"typecheck": "node_modules/typescript/bin/tsc --noEmit",
"test": "jest"
},
"author": "FarmBot.io, Rick Carlino",
"license": "MIT",
"devDependencies": {
"@parcel/packager-ts": "2.11.0",
"@parcel/transformer-typescript-tsc": "2.11.0",
"@parcel/transformer-typescript-types": "2.11.0",
"@types/jest": "29.5.11",
"@types/node": "20.11.5",
"@types/ws": "8.5.8",
"abab": "2.0.6",
"parcel": "2.11.0",
"ts-jest": "29.1.1",
"typescript": "5.3.3"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"targets": {
"main": {
"isLibrary": true,
"distDir": "dist",
"sourceMap": false,
"source": "src/farmbot_single_file.js",
"engines": {
"node": ">=20.0"
}
},
"single": {
"isLibrary": true,
"optimize": true,
"distDir": "dist",
"sourceMap": true,
"source": "src/farmbot_single_file.js",
"engines": {
"node": ">=20.0"
}
},
"types": {
"isLibrary": true,
"distDir": "dist",
"sourceMap": false,
"source": "src/index.ts",
"engines": {
"node": ">=20.0"
}
}
},
"dependencies": {
"mqtt": "5.1.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FarmBot/farmbot-js.git"
},
"keywords": [
"farming",
"agriculture",
"iot",
"arduino",
"typescript"
],
"jest": {
"setupFiles": [],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testMatch": [
"<rootDir>/src/**/__tests__/**/*.ts?(x)"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageReporters": [
"html",
"json",
"lcov"
]
}
}