@daysnap/logan-web
Version:
Fork Logan Web SDK
56 lines • 1.58 kB
JSON
{
"name": "@daysnap/logan-web",
"version": "0.0.3",
"description": "Fork Logan Web SDK",
"main": "build/node-index.js",
"module": "build/index.js",
"types": "build/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"keywords": [
"Logan",
"Web",
"SDK"
],
"author": "kassadin",
"license": "MIT",
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"@types/jest": "^24.0.22",
"@typescript-eslint/eslint-plugin": "^2.24.0",
"@typescript-eslint/parser": "^2.24.0",
"eslint": "^6.6.0",
"fake-indexeddb": "^2.1.1",
"jest": "^24.9.0",
"serialize-javascript": "^2.1.1",
"source-map-loader": "^0.2.4",
"standard-version": "^7.0.1",
"ts-jest": "^26.0.0",
"typescript": "^3.7.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.11.0"
},
"dependencies": {
"crypto-js": "^3.1.9-1",
"es6-promise": "^4.2.8",
"idb-managed": "^1.0.9"
},
"files": [
"/build",
"/src"
],
"scripts": {
"test": "jest --coverage",
"build": "node build.js",
"demo": "rm -rf demo/js && npm run build && webpack",
"start:dev": "npm run demo && webpack-dev-server",
"allready": "npm run test && npm run demo",
"publish:beta": "npm run allready && standard-version --prerelease beta && npm publish --tag beta",
"publish:prod": "npm run allready && standard-version && git push --follow-tags origin master && npm publish",
"dsc:p": "dsc publish --pnpm",
"sync": "dsc sync"
}
}