-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (45 loc) · 1.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
{
"name": "interphone",
"description": "A library that manages communication with web workers, hiding it behind a simple asynchronous interface.",
"version": "1.3.0",
"author": "Damiano Magrini <[email protected]>",
"license": "CC-BY-4.0",
"repository": {
"type": "git",
"url": "https://github.com/DamianoMagrini/interphone.git"
},
"bugs": {
"url": "https://github.com/DamianoMagrini/interphone/issues"
},
"main": "lib/cjs/index.js",
"module": "lib/es/index.js",
"types": "lib/d/index.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf main worker index.js index.d.ts",
"build": "run-s clean build:tsc",
"build:tsc": "run-p build:tsc:*",
"build:tsc:cjs": "tsc --project src/tsconfig.cjs.json",
"build:tsc:es": "tsc --project src/tsconfig.es.json",
"build:tsc:d": "tsc --project src/tsconfig.d.json",
"lint": "run-s lint:tsc lint:eslint",
"lint:tsc": "run-p lint:tsc:*",
"lint:tsc:main": "tsc --noEmit --project src/tsconfig.json",
"lint:eslint": "eslint src/**/*.ts"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"eslint": "^6.6.0",
"eslint-config-prettier": "^6.6.0",
"eslint-plugin-prettier": "^3.1.1",
"npm-run-all": "^4.1.5",
"prettier": "^1.19.1",
"rimraf": "^3.0.0",
"typescript": "^3.7.2"
},
"keywords": [
"webworker",
"async"
]
}