lml-main
Version:
This is now a mono repository published into many standalone packages.
61 lines • 1.75 kB
JSON
{
"name": "@lml/cosmo-redux-pusher",
"version": "0.1.10",
"description": "Pusher layer for cosmo APIs",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch --pretty",
"clean": "rm -rf ./dist",
"dev:build": "npm run tsfmt:replace && npm run webpack:watch",
"prepublishOnly": "npm run clean && npm run build && npm test",
"test": "jest",
"tsfmt:verify": "tsfmt --verify",
"tsfmt:replace": "tsfmt -r",
"webpack:build": "webpack",
"webpack:watch": "webpack-dev-server",
"postinstall": "npm run build"
},
"author": "Rob Tucker <rob@coderlab.co.uk>",
"license": "ISC",
"dependencies": {
"@lml/cosmo-redux-api": "0.5.6",
"@lml/cosmo-redux-store": "0.1.16",
"@lml/cosmo-ts-data": "1.1.2",
"@lml/cosmo-ui-auth": "1.11.0",
"@lml/cosmo-ui-build": "0.0.14",
"pusher-js": "^4.2.2"
},
"devDependencies": {
"@types/faker": "^4.1.2",
"@types/jest": "^21.1.6",
"faker": "^4.1.0",
"jest": "^21.2.1",
"ts-jest": "^22.0.1",
"typescript": "^2.6.2",
"typescript-formatter": "5.2.0",
"uuid": "^3.1.0",
"webpack": "^3.8.1",
"webpack-merge": "^4.1.1"
},
"jest": {
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleDirectories": [
"node_modules",
"src/app"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/src/mocks/file.js",
"\\.(scss|css|less)$": "identity-obj-proxy"
}
}
}