-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.28 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
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "security-fns",
"version": "0.0.1",
"description": "A collection of security and privacy functions for JavaScript Developers",
"keywords": [
"security",
"functions",
"javascript"
],
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"author": "Beto Muniz <[email protected]>",
"license": "MIT",
"type": "module",
"directories": {
"doc": "docs",
"lib": "lib"
},
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/obetomuniz/security-fns.git"
},
"bugs": {
"url": "https://github.com/obetomuniz/security-fns/issues",
"email": "[email protected]"
},
"scripts": {
"pkg": "rm -rf ./dist/ && rollup -c",
"prepublishOnly": "npm run pkg",
"release": "release-it"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-node-resolve": "^15.0.1",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"rollup": "^3.20.2",
"rollup-plugin-dts": "^5.3.0",
"rollup-plugin-filesize": "^10.0.0",
"tslib": "^2.5.0",
"typescript": "^5.0.2"
}
}