71 lines
2.0 KiB
JSON
71 lines
2.0 KiB
JSON
{
|
|
"name": "fp-ts-local-storage",
|
|
"version": "1.0.3",
|
|
"description": "fp-ts bindings for LocalStorage",
|
|
"files": [
|
|
"lib",
|
|
"es6"
|
|
],
|
|
"main": "lib/index.js",
|
|
"module": "es6/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"sideEffects": false,
|
|
"scripts": {
|
|
"check": "tsc -p .",
|
|
"lint": "tslint -p .",
|
|
"jest": "jest --ci --coverage",
|
|
"prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --list-different \"{src,test}/**/*.ts\"",
|
|
"fix-prettier": "prettier --no-semi --single-quote --print-width 120 --parser typescript --write \"{src,test}/**/*.ts\"",
|
|
"pretest": "npm run check && npm run lint && npm run prettier",
|
|
"test": "npm run jest",
|
|
"posttest": "npm run docs",
|
|
"clean": "rm -rf ./lib ./es6",
|
|
"prebuild": "npm run clean",
|
|
"build": "tsc -p ./tsconfig.build.json && tsc -p ./tsconfig.build-es6.json",
|
|
"prepublish": "npm run build",
|
|
"docs": "docs-ts",
|
|
"postbuild": "import-path-rewrite"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/gcanti/fp-ts-local-storage.git"
|
|
},
|
|
"author": "Giulio Canti <giulio.canti@gmail.com>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/gcanti/fp-ts-local-storage/issues"
|
|
},
|
|
"homepage": "https://github.com/gcanti/fp-ts-local-storage",
|
|
"peerDependencies": {
|
|
"fp-ts": "^2.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^22.2.2",
|
|
"@types/node": "8.0.19",
|
|
"docs-ts": "^0.3.4",
|
|
"dtslint": "^0.3.0",
|
|
"fp-ts": "^2.0.1",
|
|
"import-path-rewrite": "github:gcanti/import-path-rewrite",
|
|
"jest": "^24.8.0",
|
|
"prettier": "^1.18.2",
|
|
"rimraf": "^2.6.2",
|
|
"ts-jest": "^24.0.2",
|
|
"ts-node": "3.3.0",
|
|
"tslint": "^5.9.1",
|
|
"tslint-config-standard": "^7.0.0",
|
|
"typescript": "^3.5.3"
|
|
},
|
|
"tags": [
|
|
"fp-ts",
|
|
"localstorage",
|
|
"functional-programming",
|
|
"typescript"
|
|
],
|
|
"keywords": [
|
|
"fp-ts",
|
|
"localstorage",
|
|
"functional-programming",
|
|
"typescript"
|
|
]
|
|
}
|