-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 843 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
{
"name": "beomtil",
"version": "2.0.0",
"description": "useful util function",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"sideEffects": false,
"scripts": {
"test": "mocha $target",
"build": "rollup -c"
},
"keywords": [
"util"
],
"author": "parkbeommin",
"license": "ISC",
"dependencies": {
"assert": "^2.0.0",
"mocha": "^10.1.0"
},
"repository": "git://github.com/parkbeommin/beomtil",
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.4",
"@rollup/plugin-node-resolve": "^15.2.1",
"@rollup/plugin-terser": "^0.4.4",
"rollup": "^3.29.0",
"rollup-plugin-copy": "^3.5.0"
},
"type": "module",
"volta": {
"node": "17.5.0"
}
}