-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 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
{
"name": "legoino-navigator-serial",
"version": "0.2.2",
"description": "Use navigator.serial to manage legoino devices",
"main": "lib/index.js",
"module": "src/index.js",
"files": [
"lib",
"src"
],
"watch": {
"build": "src"
},
"scripts": {
"build": "cheminfo-build --entry src/index.js --root LegoinoSerial",
"dev": "npm-watch",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"prepack": "rollup -c",
"prettier": "prettier --check src",
"prettier-write": "prettier --write src",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage",
"test-only": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hackuarium/legoino-navigator-serial.git"
},
"keywords": [],
"author": "Luc Patiny",
"license": "MIT",
"bugs": {
"url": "https://github.com/hackuarium/legoino-navigator-serial/issues"
},
"homepage": "https://github.com/hackuarium/legoino-navigator-serial#readme",
"jest": {
"testEnvironment": "node"
},
"prettier": {
"arrowParens": "always",
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "all"
},
"devDependencies": {
"@babel/plugin-transform-modules-commonjs": "^7.21.2",
"@types/jest": "^29.4.0",
"cheminfo-build": "^1.2.0",
"eslint": "^8.35.0",
"eslint-config-cheminfo": "^8.1.3",
"jest": "^29.5.0",
"npm-watch": "^0.11.0",
"prettier": "^2.8.4",
"rollup": "^3.19.0"
},
"dependencies": {
"@lukeed/uuid": "^2.0.0",
"delay": "^5.0.0",
"fifo-logger": "^0.5.3"
}
}