-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.46 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
{
"name": "async-bmp280",
"version": "0.0.0-development",
"description": "Interface for the weather sensor BMP280",
"keywords": [
"envirophat",
"i2c-bus",
"i2c-device",
"i2c-interface",
"i2c",
"i2c-sensor",
"weather sensor",
"bmp280",
"temperature",
"pressure",
"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-bmp280.git",
"homepage": "https://async-bmp280.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",
"cz": "git-cz",
"docs": "run-s docs:generate:* docs:publish:*",
"docs:generate:md": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out docs --theme markdown",
"docs:generate:html": "typedoc src/ --exclude **/*.spec.ts --target ES6 --mode file --out dist/docs",
"docs:pusblish:md": "node ./scripts/commitMarkdownDocs || true",
"docs:publish:html": "gh-pages -m \"docs(gh-pages) Update docs [ci skip]\" -d dist/docs || true",
"fix": "run-s fix:*",
"fix:prettier": "prettier \"src/**/*.ts\" --write",
"fix:tslint": "tslint --fix --project .",
"lint": "run-s -c lint:*",
"lint:prettier": "prettier \"src/**/*.ts\" --list-different",
"lint:tslint": "tslint --project .",
"release": "run-s release:semantic",
"release:semantic": "semantic-release || true",
"test": "jest",
"test:e2e": "jest --config jest.e2e.config.js",
"test:watch": "jest --watch"
},
"devDependencies": {
"@semantic-release/changelog": "3.0.2",
"@types/jest": "24.0.24",
"cz-conventional-changelog": "2.1.0",
"gh-pages": "2.0.1",
"jest": "24.7.1",
"npm-run-all": "4.1.5",
"prettier": "1.17.0",
"semantic-release": "15.13.3",
"simple-git": "1.110.0",
"ts-jest": "24.0.2",
"tslint": "5.16.0",
"tslint-config-prettier": "1.18.0",
"tslint-immutable": "5.5.2",
"typedoc": "0.14.2",
"typedoc-plugin-markdown": "1.2.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"async-i2c-bus": "^1.0.0",
"typescript": "^3.2.2"
},
"engines": {
"node": ">=8.10.0"
}
}