2019-10-02 20:12:55 +00:00
|
|
|
{
|
|
|
|
"name": "tk-storage",
|
2019-11-14 17:15:46 +00:00
|
|
|
"version": "0.2.1",
|
2019-10-02 20:12:55 +00:00
|
|
|
"description": "Javascript/Typescript persistent storage, with key-value stores as foundation",
|
|
|
|
"main": "dist/tk-storage.umd.js",
|
|
|
|
"source": "src/index.ts",
|
|
|
|
"module": "dist/tk-storage.modern.js",
|
|
|
|
"types": "dist/index.d.ts",
|
|
|
|
"scripts": {
|
|
|
|
"test": "jest",
|
|
|
|
"normalize": "tk-base",
|
|
|
|
"build": "microbundle build -f modern,umd",
|
|
|
|
"dev": "run-p dev:*",
|
|
|
|
"dev:test": "jest --watchAll",
|
|
|
|
"dev:build": "microbundle watch -f modern,umd",
|
|
|
|
"prepare": "npm run build",
|
2019-11-07 21:33:23 +00:00
|
|
|
"prepublishOnly": "npm test",
|
|
|
|
"dev:serve": "live-server --host=localhost --port=5000 --no-browser --ignorePattern='.*\\.d\\.ts' dist"
|
2019-10-02 20:12:55 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2019-11-07 21:33:23 +00:00
|
|
|
"@types/uuid": "^3.4.6",
|
|
|
|
"tk-base": "^0.2.5",
|
2019-10-02 20:12:55 +00:00
|
|
|
"uuid": "^3.3.3"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"/src",
|
|
|
|
"/dist"
|
|
|
|
],
|
|
|
|
"author": {
|
|
|
|
"name": "Michaël Lemaire",
|
|
|
|
"url": "https://thunderk.net"
|
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://code.thunderk.net/tslib/tk-storage.git"
|
|
|
|
},
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://gitlab.com/thunderk/tk-storage/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://code.thunderk.net/tslib/tk-storage",
|
|
|
|
"license": "ISC",
|
|
|
|
"keywords": [
|
|
|
|
"typescript",
|
|
|
|
"storage",
|
|
|
|
"database"
|
|
|
|
]
|
|
|
|
}
|