ltstrg
Version:
Simpler storage for your test experience!
60 lines (59 loc) • 1.5 kB
JSON
{
"name": "ltstrg",
"version": "1.0.1",
"description": "Simpler storage for your test experience!",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rimraf dist && tsc -P tsconfig.build.json",
"lint": "prettier --check src/**/*.ts specs/**/*.ts",
"format": "prettier --write src/**/*.ts specs/**/*.ts",
"test": "npm run lint && npm run test-type && npm run test-coverage",
"test-api": "jest",
"test-type": "tsc --noEmit",
"test-coverage": "jest --coverage",
"codecov": "codecov -f coverage/*.json",
"prepublishOnly": "npm test && npm run build"
},
"keywords": [
"storage",
"localstorage",
"local-storage",
"memorystorage",
"memory-storage",
"mock",
"test"
],
"author": "Junyoung Choi <rokt33r.choi@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/Rokt33r/litestorage",
"repository": {
"type": "git",
"url": "git+https://github.com/Rokt33r/litestorage.git"
},
"bugs": {
"url": "https://github.com/Rokt33r/litestorage/issues"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"codecov": "^3.5.0",
"jest": "^24.9.0",
"prettier": "^1.18.2",
"rimraf": "^3.0.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2"
},
"jest": {
"preset": "ts-jest",
"setupFiles": [
"<rootDir>/specs/setup.js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
}
}