strict-async-storage
Version:
81 lines (80 loc) • 2.15 kB
JSON
{
"name": "strict-async-storage",
"version": "0.1.1",
"description": "",
"keywords": [
"typescript",
"strict",
"async",
"storage",
"localStorage",
"switchable",
"remote"
],
"main": "dist/cjs/strict-async-storage.cjs.js",
"module": "dist/esm/strict-async-storage.esm.js",
"types": "dist/types/index.d.ts",
"files": [
"dist"
],
"scripts": {
"test": "jest",
"build:js": "rollup -c",
"build:types": "tsc --emitDeclarationOnly -p tsconfig.build.json",
"build:clean": "del dist",
"build": "tsc --noEmit && eslint --ext .ts,.js ./src && npm run build:clean && npm run build:js && npm run build:types",
"release": "np",
"version": "npm run build"
},
"lint-staged": {
"*.{ts,js}": [
"prettier --write",
"eslint --fix",
"jest --bail --findRelatedTests"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/Youmenomi/strict-async-storage.git"
},
"author": "Dean Yao <youmenomi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Youmenomi/strict-async-storage/issues"
},
"homepage": "https://github.com/Youmenomi/strict-async-storage#readme",
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.12.1",
"@babel/plugin-proposal-decorators": "^7.12.1",
"@babel/preset-env": "^7.12.1",
"@babel/preset-typescript": "^7.12.1",
"@types/jest": "^26.0.14",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.0",
"del-cli": "^3.0.1",
"eslint": "^7.11.0",
"eslint-config-prettier": "^6.13.0",
"eslint-plugin-prettier": "^3.1.4",
"husky": "^4.3.0",
"jest": "^26.6.0",
"lint-staged": "^10.4.2",
"mobx": "^6.0.1",
"np": "^6.5.0",
"prettier": "^2.1.2",
"rollup": "^2.32.0",
"rollup-simple-configer": "^0.1.1",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"dependencies": {
"auto-bind": "^4.0.0",
"p-each-series": "^2.1.0"
}
}