generated from niuee/simple-typescript-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1 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
{
"name": "point2point",
"version": "0.0.95",
"description": "",
"main": "./build/cjs/index.js",
"module": "./build/esm/index.js",
"types": "./build/types.d.ts",
"scripts": {
"start": "node ./build/index.js",
"test": "jest",
"build": "rollup -c --bundleConfigAsCjs"
},
"keywords": [],
"repository": {
"type": "git",
"url": "git+https://github.com/niuee/point2point.git"
},
"bugs": {
"url": "https://github.com/niuee/point2point/issues"
},
"homepage": "https://github.com/niuee/point2point#readme",
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@types/jest": "^29.5.1",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"rollup": "^3.26.2",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.0.5",
"tslib": "^2.6.0",
"typescript": "^5.0.3"
}
}