-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.31 KB
/
Copy pathpackage.json
File metadata and controls
61 lines (61 loc) · 1.31 KB
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
54
55
56
57
58
59
60
61
{
"name": "reefer",
"version": "0.1.1",
"description": "Secure document reference state management through URL state",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": {
"crypto": false
},
"types": "dist/index.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"sideEffects": false,
"scripts": {
"build": "rollup -c",
"test": "jest",
"lint": "eslint src/**/*.ts",
"prepublishOnly": "npm run build",
"dev": "rollup -c -w"
},
"keywords": [
"state-management",
"url",
"query-params",
"document-references",
"encryption"
],
"author": "Skyler Saleebyan",
"repository": {
"type": "git",
"url": "git+https://github.com/skyler14/reefer.git"
},
"license": "MIT",
"dependencies": {
"crypto-js": "^4.2.0"
},
"peerDependencies": {
"express": ">=4.17.1"
},
"peerDependenciesMeta": {
"express": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-commonjs": "^21.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@rollup/plugin-typescript": "^8.5.0",
"@types/crypto-js": "^4.2.2",
"@types/jest": "^27.4.0",
"eslint": "^8.8.0",
"jest": "^27.5.1",
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"tslib": "^2.8.1",
"typescript": "^4.9.5"
}
}