-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
70 lines (70 loc) · 2.02 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
{
"name": "async-i2c-bus",
"version": "0.0.0-development",
"description": "Bus and Device classes for i2c-bus, with promised functions.",
"keywords": [
"i2c-bus",
"i2c-device",
"i2c-interface",
"i2c",
"pi",
"Raspberry Pi",
"raspberry",
"rpi"
],
"main": "dist/main/index.js",
"typings": "dist/main/index.d.ts",
"module": "dist/module/index.js",
"repository": "[email protected]:AlejandroHerr/async-i2c-bus.git",
"homepage": "https://async-i2c-bus.alejandroherr.io",
"author": "Alejandro Hernández Cobo <[email protected]>",
"license": "MIT",
"scripts": {
"build": "run-s clean && run-p build:*",
"build:main": "tsc -p tsconfig.json",
"build:module": "tsc -p tsconfig.module.json",
"clean": "rm -rf dist",
"commit": "git-cz",
"docs": "run-s readme:generate docs:clean docs:generate docs:config",
"docs:clean": "rm -rf ./docs/.vuepress",
"docs:config": "sh ./scripts/configureVuepress.sh",
"docs:generate": "typedoc ./src",
"lint": "eslint ./src --ext ts",
"readme:generate": "readme generate",
"test": "jest --watch --coverage",
"semantic-release": "semantic-release"
},
"dependencies": {
"@types/node": "^12.12.8",
"i2c-bus": "^5.1.0",
"typescript": "^3.7.2"
},
"devDependencies": {
"@appnest/readme": "1.2.5",
"@types/jest": "24.9.1",
"@typescript-eslint/eslint-plugin": "2.23.0",
"@typescript-eslint/parser": "2.23.0",
"codecov": "3.6.5",
"cz-conventional-changelog": "3.0.2",
"eslint": "6.8.0",
"eslint-config-airbnb-typescript": "6.3.1",
"eslint-config-prettier": "6.7.0",
"eslint-plugin-import": "2.19.1",
"eslint-plugin-prettier": "3.1.2",
"jest": "24.9.0",
"npm-run-all": "4.1.5",
"prettier": "1.19.1",
"semantic-release": "15.14.0",
"ts-jest": "24.2.0",
"typedoc": "0.15.5",
"typedoc-plugin-markdown": "2.2.14"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"engines": {
"node": ">=8.10.0"
}
}