This repository has been archived by the owner on Mar 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
107 lines (107 loc) · 2.75 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
95
96
97
98
99
100
101
102
103
104
105
106
107
{
"name": "tastatur",
"version": "0.0.1",
"description": "input and keyboard handling in javascript",
"main": "dist/lib/index.js",
"module": "dist/esm/lib/index.js",
"types": "dist/esm/lib/index.d.ts",
"files": [
"dist",
"lib"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"start": "npm run build",
"linter": "tslint --project ./tsconfig.json",
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --sourceMap --module commonjs --outDir dist",
"build:esm": "tsc --sourceMap --module es2015 --outDir dist/esm",
"pretest": "npm run build",
"test": "nyc mocha -r source-map-support/register dist/tests/",
"test:browser": "webpack --config ./tests/webpack.config.js && karma start",
"prerelease": "git checkout master && git pull origin master && npm test && npm run build",
"release": "standard-version",
"postrelease": "git push --follow-tags origin master && npm publish && npm run publish:page",
"precoverage": "npm run clean && tsc --inlineSourceMap --module commonjs --outDir dist",
"coverage": "nyc report --reporter=lcov && codecov",
"build:watch": "npm run build:cjs -- --watch",
"publish:page": "sh ./publish-page.sh"
},
"author": {
"name": "Markus Wolf",
"email": "knister.peter@shadowrun-clan.de"
},
"repository": {
"type": "git",
"url": "KnisterPeter/tastatur"
},
"license": "MIT",
"devDependencies": {
"@knisterpeter/standard-tslint": "1.7.2",
"@types/chai": "4.2.15",
"@types/jsdom": "12.2.4",
"@types/mocha": "8.2.1",
"chai": "4.3.0",
"codecov": "3.8.1",
"coveralls": "3.1.0",
"jest": "26.6.3",
"jsdom": "16.1.0",
"karma": "6.1.1",
"karma-chai": "0.1.0",
"karma-mocha": "2.0.1",
"karma-sauce-launcher": "4.3.5",
"mocha": "8.3.0",
"nyc": "15.1.0",
"rimraf": "3.0.2",
"source-map-support": "0.5.19",
"standard-version": "9.1.1",
"ts-jest": "26.1.4",
"ts-loader": "8.0.17",
"tslint": "6.1.3",
"typescript": "4.1.5",
"webpack": "5.24.2",
"webpack-cli": "4.5.0",
"webpack-node-externals": "2.5.2"
},
"dependencies": {
"tslib": "2.1.0"
},
"nyc": {
"exclude": [
"node_modules",
"coverage",
"dist/tests"
]
},
"renovate": {
"extends": [
"config:base"
],
"lockFileMaintenance": {
"enabled": true,
"automerge": true
},
"packageRules": [
{
"depTypeList": [
"devDependencies"
],
"updateTypes": [
"minor",
"patch"
],
"automerge": true
},
{
"packagePatterns": [
"^@types/"
],
"automerge": true
}
]
}
}