-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 839 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
35
36
{
"name": "browser-in-mem-storage",
"version": "1.0.1",
"description": "Browser in-memory storage",
"main": "lib/index.js",
"types": "lib",
"scripts": {
"test": "jest --coverage",
"build": "rm -rf lib && tsc -p ."
},
"keywords": [
"Browser in-memory storage",
"In-memory storage",
"XXS attack protection",
"protect tokens",
"protect sensitive data"
],
"author": "Nwabuzor, Chukwuemeka Obiora",
"license": "ISC",
"devDependencies": {
"@babel/core": "7.9.6",
"@babel/preset-env": "7.9.6",
"@babel/preset-typescript": "7.9.0",
"@types/jest": "25.2.1",
"babel-jest": "25.5.1",
"jest": "25.5.4",
"typescript": "3.8.3"
},
"files": [
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/shaolinmkz/browser-in-mem-storage"
}
}