-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 888 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 888 Bytes
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
{
"name": "linka",
"version": "2.0.0",
"description": "A tiny Promise based low-level communication for two way stream",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"test": "mocha --reporter spec --require ts-node/register src/**/*.test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.10.5",
"@babel/preset-env": "^7.10.4",
"@jest/globals": "^26.1.0",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"babel-jest": "^26.1.0",
"bundt": "^1.0.2",
"chai": "^4.3.7",
"eslint": "^7.2.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-plugin-import": "^2.22.0",
"jest": "^26.1.0",
"mocha": "^10.2.0",
"typescript": "^5.1.3",
"ts-node": "^10.9.1"
}
}