-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.07 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.07 KB
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
{
"name": "channel-ts",
"version": "0.1.2",
"description": "Channels implemented in Typescript using async/await",
"repository": {
"type": "git",
"url": "https://github.com/arjsin/channels.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepare": "tsc -p tsconfig.build.json",
"check": "eslint --fix src/**/*.ts && tsc --noEmit",
"test": "jest"
},
"author": "Arjun Singh",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.1.2",
"@types/node": "^13.7.1",
"@typescript-eslint/eslint-plugin": "^2.19.2",
"@typescript-eslint/parser": "^2.19.2",
"eslint": "^6.8.0",
"jest": "^25.1.0",
"reflect-metadata": "^0.1.13",
"ts-jest": "^25.2.0",
"typescript": "^3.9.7"
},
"keywords": [
"channel",
"csp",
"typescript",
"async",
"await",
"observer",
"observable",
"publisher",
"subscriber",
"mutex"
],
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}