UNPKG

@tacky/store

Version:

State management framework based on react

73 lines (72 loc) 2.18 kB
{ "name": "@tacky/store", "version": "2.0.14", "description": "State management framework based on react", "main": "./lib/index.js", "module": "./es/index.js", "types": "./index.d.ts", "keywords": [ "framework", "react", "redux", "react-redux", "mobx", "mobx-react", "vuex", "front-end", "tacky", "state-management" ], "publishConfig": { "access": "public" }, "author": "feifan <darknight3@vip.qq.com>", "license": "MIT", "peerDependencies": { "react": ">=16", "react-dom": ">=16" }, "devDependencies": { "@babel/cli": "^7.6.4", "@babel/core": "^7.6.4", "@babel/plugin-transform-modules-commonjs": "^7.6.0", "@babel/plugin-transform-runtime": "^7.6.2", "@babel/preset-env": "^7.6.3", "@babel/runtime": "^7.6.3", "@types/jest": "^24.0.19", "@types/node": "^12.11.5", "@types/react": "^16.9.14", "cross-env": "^6.0.3", "jest": "^24.9.0", "react": "^16.12.0", "react-dom": "^16.12.0", "ts-jest": "^24.1.0", "typescript": "^3.6.4" }, "files": [ "src/", "lib/", "es/", "index.d.ts", "typings" ], "repository": { "type": "git", "url": "git+https://github.com/kujiale/tacky.git" }, "scripts": { "test": "jest --forceExit --coverage --verbose", "test:watch": "npm run test -- --watchAll", "build:ts": "rm -rf ts && tsc -target es2018 -declarationDir ./typings -types node -outDir ./ts", "build:es": "rm -rf es && npm run build:ts && npx babel ts --out-dir ./es", "build:lib": "rm -rf lib && npm run build:ts && cross-env BABEL_ENV=commonjs npx babel ts --out-dir lib", "build:watch": "tsc -w -target es2018 -declarationDir ./typings -types node -outDir ./ts & npx babel ts -w --out-dir es", "build:umd": "npx webpack --mode='development' -o dist/tacky-store.js", "build:umd:min": "npx webpack --mode='production' -o dist/tacky-store.min.js", "build:all": "npm run build:es && npm run build:lib && npm run build:umd && npm run build:umd:min" }, "bugs": { "url": "https://github.com/kujiale/tacky/issues" }, "gitHead": "fdb34d565b4b26bdcd20dba051a417d021048122" }