-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
94 lines (94 loc) · 2.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
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": "j5e",
"version": "0.16.0",
"description": "j5e is a device first robotics an IoT framework built to levarage the ECMA-419 specification",
"exports": {
"./animation": "./lib/animation/index.js",
"./button": "./lib/button/index.js",
"./easing": "./lib/easing/index.js",
"./event": "./lib/event/index.js",
"./fn": "./lib/fn/index.js",
"./gps": "./lib/gps/index.js",
"./led": "./lib/led/index.js",
"./light": "./lib/light/index.js",
"./motor": "./lib/motor/index.js",
"./relay": "./lib/relay/index.js",
"./rgb": "./lib/rgb/index.js",
"./sensor": "./lib/sensor/index.js",
"./servo": "./lib/servo/index.js",
"./switch": "./lib/switch/index.js",
"./thermometer": "./lib/thermometer/index.js",
"./lm335": "./lib/thermometer/lm335/index.js",
"./lm35": "./lib/thermometer/lm35/index.js",
"./mf52a103j3470": "./lib/thermometer/mf52a103j3470/index.js",
"./tmp36": "./lib/thermometer/tmp36/index.js",
"./withinable": "./lib/withinable/index.js"
},
"type": "module",
"directories": {
"test": "test"
},
"scripts": {
"test": "c8 mocha --recursive --exit",
"docs": "jsdoc -t ./node_modules/foodoc/template -u ./build/docs/tutorials -c ./build/docs/jsdoc.json -d docs",
"lint": "npm run lintLib;npm run lintTest",
"lintLib": "eslint lib/*/*.js",
"lintExamples": "eslint examples/*/*.js",
"lintTest": "eslint test/*.js --rule '\"func-names\": [\"error\", \"never\"]'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dtex/j5e.git"
},
"keywords": [
"javascript",
"robotics",
"IoT",
"embedded",
"moddable",
"xs",
"esp8266",
"esp32",
"button",
"gps",
"led",
"motor",
"photoresistor",
"relay",
"rgb",
"servo",
"switch",
"sensor",
"thermometer",
"lm35",
"lm335",
"mf52a103j3470",
"tmp36"
],
"author": "Donovan Buck <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dtex/j5e/issues"
},
"homepage": "https://dtex.github.com/j5e",
"sourceType": "module",
"devDependencies": {
"@dtex/mock-io": "^0.0.7",
"c8": "^8.0.1",
"chai": "^4.3.8",
"eslint": "^8.48.0",
"eslint-config-standard": "^17.1.0",
"@babel/eslint-parser": "^7.22.11",
"fs-extra": "^8.1.0",
"mocha": "^10.2.0",
"sinon": "^15.2.0"
},
"files": [
"lib",
"examples",
"LICENSE",
"README.md",
"manifest.json",
"package.json"
]
}