-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1019 Bytes
/
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
{
"name": "remote-async",
"version": "1.1.1",
"main": "lib/remoteAsync.cjs.js",
"module": "lib/remoteAsync.esm.js",
"license": "MIT",
"engines": {
"node": ">=10",
"yarn": ">=1.22 <2"
},
"scripts": {
"test": "jest --verbose",
"test:coverage": "jest --coverage",
"codecov": "codecov ./coverage/clover.xml",
"build": "rollup -c"
},
"types": "./lib/index.d.ts",
"author": "icepro",
"repository": "https://github.com/iceprosurface/remote-async",
"files": [
"/lib",
"/src",
"/package.json",
"/readme.md",
"/LICENSE"
],
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@rollup/plugin-babel": "^5.3.0",
"@types/jest": "^26.0.4",
"codecov": "^3.8.2",
"jest": "^26.1.0",
"jest-html-reporter": "^3.1.3",
"prettier": "^2.0.5",
"rollup": "^2.21.0",
"rollup-plugin-sourcemaps": "^0.6.2",
"rollup-plugin-typescript2": "^0.27.1",
"ts-jest": "^26.1.2",
"ts-loader": "^8.0.0",
"typescript": "^3.9.6"
}
}