mirror of
https://github.com/tauri-apps/tauri-forage.git
synced 2026-02-04 18:51:21 +01:00
95 lines
2.6 KiB
JSON
95 lines
2.6 KiB
JSON
{
|
|
"name": "@tauri-apps/tauri-forage",
|
|
"version": "1.0.0-beta.2",
|
|
"description": "enhanced localForage with curry and crypto - for any browser and device",
|
|
"main": "dist/index.cjs.min.js",
|
|
"module": "dist/index.esm.js",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"types": "dist/index.d.ts",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"directories": {
|
|
"src": "src",
|
|
"test": "test",
|
|
"dist": "dist"
|
|
},
|
|
"scripts": {
|
|
"test": "jest",
|
|
"test:jest": "jest --updateSnapshot",
|
|
"test:unit:coverage": "jest --coverage",
|
|
"test:unit:watch": "jest --watch",
|
|
"test:unit:watchAll": "jest --watchAll",
|
|
"transpile": "npx babel ./lib --out-dir ./dist && npx eslint ./dist/*.js ./dist/*.js --fix",
|
|
"makeDocs": "jsdoc -c './jsdoc.json' -d docs && git add './docs/*'",
|
|
"buildWebpack": "webpack --progress",
|
|
"buildRollup": "rollup -c"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/tauri-apps/tauri-forage.git"
|
|
},
|
|
"author": "Daniel Thompson-Yvetot",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/tauri-apps/tauri-forage/issues"
|
|
},
|
|
"homepage": "https://github.com/tauri-apps/tauri-forage#readme",
|
|
"dependencies": {
|
|
"localforage": "^1.7.3",
|
|
"ramda": "^0.26.1",
|
|
"tweetnacl": "^1.0.1",
|
|
"tweetnacl-util": "^0.15.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.6.4",
|
|
"@babel/core": "^7.6.4",
|
|
"@babel/preset-env": "^7.6.3",
|
|
"@rollup/plugin-commonjs": "^11.0.1",
|
|
"@rollup/plugin-json": "^4.0.1",
|
|
"@rollup/plugin-node-resolve": "^7.0.0",
|
|
"@rollup/plugin-typescript": "^2.1.0",
|
|
"@types/jest": "^24.9.1",
|
|
"@types/ramda": "^0.26.39",
|
|
"babel-eslint": "^10.0.3",
|
|
"babel-jest": "^24.9.0",
|
|
"babel-plugin-transform-relative-paths": "^0.1.0",
|
|
"better-docs": "^1.4.7",
|
|
"dom-storage": "^2.1.0",
|
|
"dotenv": "8.2.0",
|
|
"eslint": "^6.8.0",
|
|
"eslint-plugin-security": "^1.4.0",
|
|
"husky": "^1.2.0",
|
|
"jest": "^24.9.0",
|
|
"jest-transform-stub": "^2.0.0",
|
|
"jsdoc": "^3.6.3",
|
|
"jsdoc-mermaid": "^1.0.0",
|
|
"lint-staged": "^9.4.2",
|
|
"postinstall-postinstall": "^2.0.0",
|
|
"promise": "^8.0.2",
|
|
"rollup": "^1.29.1",
|
|
"rollup-plugin-babel": "^4.3.3",
|
|
"rollup-plugin-terser": "^5.2.0",
|
|
"rollup-plugin-typescript2": "^0.25.3",
|
|
"ts-jest": "^24.3.0",
|
|
"ts-loader": "^6.2.1",
|
|
"tslib": "^1.10.0",
|
|
"typescript": "^3.7.5",
|
|
"webpack": "^4.41.5",
|
|
"webpack-cli": "^3.3.10"
|
|
},
|
|
"engines": {
|
|
"node": ">= 10.18.1",
|
|
"npm": ">= 6.13.4",
|
|
"yarn": ">= 1.21.1"
|
|
},
|
|
"lint-staged": {
|
|
"src/*.{js,vue}": [
|
|
"eslint --fix",
|
|
"git add"
|
|
]
|
|
}
|
|
}
|