-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
executable file
·49 lines (49 loc) · 1.47 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
{
"name": "@ultimate/vault",
"version": "0.0.2",
"description": "Typed localStorage and sessionStorage utility with data structure and prefix support.",
"main": "index.js",
"scripts": {
"start": "tsc src/*.ts --watch",
"copy": "copyfiles package.json README.md dist",
"minify": "uglifyjs --compress --mangle --source-map \"url='dist/lib/vault.js.map'\" --output dist/lib/vault.min.js -- dist/lib/vault.js",
"lint": "eslint . --ext .ts",
"prebuild": "rimraf dist",
"build": "npm run lint && tsc --build",
"postbuild": "npm run copy && npm run minify",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ultimatecourses/vault.git"
},
"keywords": [
"localstorage",
"sessionstorage",
"typescript"
],
"author": "ultimatecourses",
"license": "MIT",
"bugs": {
"url": "https://github.com/ultimatecourses/vault/issues"
},
"homepage": "https://github.com/ultimatecourses/vault#readme",
"devDependencies": {
"@babel/core": "^7.18.9",
"@babel/preset-env": "^7.18.9",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"babel-jest": "^28.1.3",
"copyfiles": "^2.4.1",
"eslint": "^8.10.0",
"jest": "^28.1.3",
"rimraf": "^3.0.2",
"typescript": "^4.5.5",
"uglify-js": "^3.15.2"
},
"dependencies": {
"jest-environment-jsdom": "^28.1.3"
}
}