-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
40 lines (40 loc) · 1.34 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
{
"name": "@protontech/mutex-browser",
"version": "1.0.5",
"description": "Acquire a mutex in the browser through IndexedDB or cookies",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"pretty": "prettier --write .",
"test": "npm run build && npx karma start karma.conf.js",
"lint": "eslint src --ext .ts --quiet",
"coverage": "nyc -r text -e .ts -x \"tests/*.test.ts\" npm run test"
},
"keywords": [],
"license": "ISC",
"devDependencies": {
"@types/jasmine": "^3.4.4",
"@typescript-eslint/eslint-plugin": "^2.6.1",
"@typescript-eslint/parser": "^2.6.1",
"eslint": "^6.6.0",
"esm": "^3.2.25",
"jasmine": "^3.6.1",
"jasmine-core": "^3.6.0",
"karma": "^5.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-rollup-preprocessor": "^7.0.5",
"nyc": "^14.1.1",
"prettier": "^2.1.1",
"puppeteer": "^5.2.1",
"rollup": "^1.32.1",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-json": "^3.1.0",
"rollup-plugin-node-resolve": "^4.0.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"rollup-plugin-typescript2": "^0.19.3",
"typescript": "^3.6.4"
}
}