UNPKG

actiontypes

Version:

Generate namespaced strings for Flux standard actions

65 lines (64 loc) 1.47 kB
{ "name": "actiontypes", "version": "0.3.2", "description": "Generate namespaced strings for Flux standard actions", "main": "dist/index.js", "ts:main": "src/index.ts", "typings": "src/index.ts", "repository": { "type": "git", "url": "https://github.com/crvst/actiontypes" }, "dependencies": { "@types/lodash.isplainobject": "^4.0.3", "lodash.isplainobject": "^4.0.6" }, "devDependencies": { "@types/jest": "^22.0.1", "fuse-box": "^3.0.2", "fuse-box-typechecker": "^2.7.0", "jest": "^22.0.6", "ts-jest": "^22.0.1", "tslint": "^5.9.1", "typescript": "^2.6.2", "uglify-es": "^3.3.5" }, "jest": { "moduleFileExtensions": [ "js", "ts", "json" ], "testPathIgnorePatterns": [ "<rootDir>/(build|docs|node_modules)/" ], "testMatch": [ "<rootDir>/src/**/__tests__/**/*.ts", "<rootDir>/src/**/?(*.)(spec|test).ts" ], "transform": { "^.+\\.tsx?$": "<rootDir>/typescriptTransform.js" }, "transformIgnorePatterns": [ "[/\\\\]node_modules[/\\\\].+\\.(js|ts)$" ], "globals": { "ts-jest": { "tsConfigFile": "./tsconfig.test.json" } } }, "scripts": { "start": "npm t && npm run build", "build": "node fuse.js", "test": "npx jest --color" }, "files": ["dist", "src"], "keywords": [ "flux", "redux", "actions" ], "author": "Bogdan Slovyagin", "license": "MIT" }