generated from vvo/javascript-library-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
103 lines (103 loc) · 2.26 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
{
"name": "sync-message",
"version": "0.0.12",
"private": false,
"description": "Synchronous communication between the main browser thread and web workers",
"repository": {
"type": "git",
"url": "https://github.com/alexmojaki/sync-message.git"
},
"license": "MIT",
"author": "Alex Hall <[email protected]>",
"sideEffects": false,
"main": "dist/index.js",
"types": "dist/lib/index.d.ts",
"files": [
"dist/",
"lib/",
"LICENSE",
"README.md"
],
"scripts": {
"build": "rm -rf dist/ && webpack --mode production",
"format": "prettier --write '**/*.*' && eslint . --fix",
"lint": "prettier --check '**/*.*' && eslint .",
"prepare": "yarn build",
"semantic-release": "semantic-release"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"node": "12"
}
}
]
]
},
"prettier": {
"bracketSpacing": false,
"trailingComma": "all"
},
"eslintConfig": {
"env": {
"browser": true,
"es6": true,
"node": true
},
"parser": "babel-eslint",
"parserOptions": {
"ecmaVersion": 2019,
"sourceType": "module"
},
"extends": [
"eslint:recommended"
],
"rules": {
"no-constant-condition": [
2,
{
"checkLoops": false
}
]
},
"globals": {
"Atomics": "readonly",
"SharedArrayBuffer": "readonly"
}
},
"dependencies": {},
"devDependencies": {
"@babel/cli": "7.12.17",
"@babel/core": "7.12.17",
"@babel/preset-env": "7.12.17",
"babel-eslint": "10.1.0",
"comlink": "^4.3.1",
"eslint": "7.32.0",
"html-webpack-plugin": "^5.5.0",
"prettier": "2.1.2",
"prettier-plugin-packagejson": "2.2.13",
"semantic-release": "17.2.4",
"semantic-release-cli": "5.4.4",
"ts-loader": "^9.2.6",
"typescript": "^4.5.5",
"webpack": "^5.66.0",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.7.3",
"worker-loader": "^3.0.8"
},
"renovate": {
"extends": [
"config:js-lib",
":automergePatch",
":automergeBranch",
":automergePatch",
":automergeBranch",
":automergeLinters",
":automergeTesters",
":automergeTypes"
]
}
}