-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.31 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
53
{
"name": "@brixtol/cryptographer",
"version": "0.3.1",
"description": "Encrypt and decrypt strings, numbers and objects",
"author": {
"name": "Νίκος Σαβίδης ",
"email": "n@brixtol.com",
"url": "https://brixtoltextiles.com"
},
"license": "MIT",
"module": "package/index.js",
"main": "package/index.cjs.js",
"types": "package/index.d.ts",
"private": false,
"repository": {
"type": "git",
"url": "https://github.com/brixtol/cryptographer.git"
},
"bugs": {
"url": "https://github.com/brixtol/cryptographer/issues"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c --environment prod",
"pack": "cd versions; pnpm pack ../ && cd ..",
"test": "ava --watch --verbose"
},
"prettier": "@brixtol/prettier-config",
"eslintConfig": {
"ignorePatterns": "package",
"extends": "@brixtol/eslint-config"
},
"ava": {
"files": [
"./test/*.js"
],
"require": [
"esm"
]
},
"peerDependencies": {
"rollup": "^2.26.11"
},
"devDependencies": {
"@brixtol/eslint-config": "workspace:^1.0.1",
"@brixtol/prettier-config": "workspace:^1.1.0",
"@brixtol/rollup-config": "workspace:^1.2.0",
"@brixtol/tsconfig": "workspace:^1.0.1",
"esm": "^3.2.25",
"tslib": "^2.3.1",
"typescript": "^4.4.3"
}
}