-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.17 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
{
"name": "legoino-device-information",
"version": "2.2.3",
"description": "Device information for all our arduino derived projects",
"main": "./src/index.js",
"files": [
"src"
],
"scripts": {
"build": "cheminfo-build --entry src/index.js --root legoinoDeviceInformation",
"eslint": "eslint src",
"eslint-fix": "npm run eslint -- --fix",
"test": "npm run test-coverage && npm run eslint",
"test-coverage": "jest --coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/Hackuarium/legoino-device-information.git"
},
"keywords": [],
"author": "Luc Patiny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Hackuarium/legoino-device-information/issues"
},
"homepage": "https://github.com/Hackuarium/legoino-device-information#readme",
"jest": {
"testEnvironment": "node"
},
"devDependencies": {
"cheminfo-build": "^1.1.11",
"cheminfo-publish": "^1.0.21",
"codecov": "^3.8.2",
"eslint": "^8.2.0",
"eslint-config-cheminfo": "^5.0.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.2.4",
"jest": "^27.3.1",
"prettier": "^2.4.1"
}
}