forked from FarmBot/farmbot-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.05 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
{
"name": "farmbot",
"version": "5.4.0-rc5",
"description": "Farmbot Javascript client.",
"scripts": {
"build": "./build.sh",
"test": "node_modules/jest/bin/jest.js"
},
"author": "FarmBot.io, Rick Carlino",
"license": "MIT",
"devDependencies": {
"@types/node": "^8.0.46"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"dependencies": {
"mqtt": "2.15.0",
"typescript": "^2.4.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FarmBot/farmbot-js.git"
},
"keywords": [
"farming",
"agriculture",
"iot",
"arduino",
"typescript"
],
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"mapCoverage": true,
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.{ts,tsx}"
],
"coverageReporters": [
"html",
"json",
"lcov"
]
}
}