-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
53 lines (53 loc) · 1.31 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
{
"name": "navigator.locks",
"description": "support Web Locks API work in major browsers",
"version": "0.8.6",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"browser": "dist/index.umd.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest",
"clean": "rimraf dist",
"build": "yarn clean && tsc && rollup -c ",
"commit": "yarn git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aermin/web-locks.git"
},
"keywords": [
"Web",
"Locks",
"Web Locks",
"Web Locks polyfill",
"navigator.locks",
"navigator.locks polyfill"
],
"author": "aermin",
"license": "MIT",
"bugs": {
"url": "https://github.com/aermin/web-locks/issues"
},
"homepage": "https://github.com/aermin/web-locks#readme",
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^11.0.0",
"@rollup/plugin-typescript": "^8.2.1",
"@types/jest": "^26.0.23",
"git-cz": "^4.7.5",
"jest": "^27.0.1",
"rimraf": "^3.0.2",
"rollup": "^2.34.1",
"rollup-plugin-terser": "^7.0.2",
"ts-jest": "^27.0.0",
"tslib": "^2.2.0",
"typescript": "^4.2.4"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom"
},
"dependencies": {}
}