UNPKG

gothamjs

Version:
90 lines 2.29 kB
{ "name": "gothamjs", "version": "0.0.1", "description": "Platform", "license": "MIT", "main": "index.js", "types": "./lib/index.d.ts", "keywords": [ "gothamjs", "flux", "immutable", "nitrogenlabs", "react" ], "author": "Giraldo Rosales <giraldo@nitrogenlabs.com> (http://nitrogenlabs.com/)", "repository": { "type": "git", "url": "git+ssh://git@github.com/nitrogenlabs/gothamjs.git" }, "homepage": "http://www.gothamjs.io", "bugs": { "url": "https://github.com/nitrogenlabs/gothamjs/issues" }, "scripts": { "compile": "tsc", "docs": "typedoc --target ES5 --module commonjs --out docs/ src/ --exclude src/index.ts --excludeExternals --hideGenerator", "lint": "tslint -c tslint.json 'src/**/*.{ts,tsx}'", "pretest": "npm run lint", "test": "jest" }, "typings": "dist/index", "dependencies": { "history": "^4.7.2", "lodash": "^4.17.4", "prop-types": "^15.6.0", "react": "^16.2.0", "react-addons-css-transition-group": "^15.6.2", "react-dom": "^16.2.0", "react-router-dom": "^4.2.2" }, "devDependencies": { "@types/history": "^4.6.2", "@types/jest": "^21.1.8", "@types/node": "^8.0.58", "@types/prop-types": "^15.5.2", "@types/react": "^16.0.29", "@types/react-dom": "^16.0.3", "@types/react-router-dom": "^4.2.3", "jest": "^21.2.1", "react-addons-test-utils": "^15.6.2", "react-scripts-ts": "^2.8.0", "react-test-renderer": "^16.2.0", "regenerator-runtime": "^0.11.1", "ts-jest": "^21.2.4", "tslint": "^5.8.0", "tslint-eslint-rules": "^4.1.1", "tslint-react": "^3.2.0", "typedoc": "^0.9.0", "typescript": "^2.6.2" }, "peerDependencies": { "react": ">=16", "react-dom": ">=16" }, "jest": { "moduleFileExtensions": [ "ts", "tsx", "js" ], "setupFiles": [ "<rootDir>/jest.setup.js" ], "testURL": "http://localhost", "transform": { "^.+\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js" }, "testMatch": [ "<rootDir>/src/**/*test.ts?(x)" ], "testPathIgnorePatterns": [ "<rootDir>/node_modules/", "<rootDir>/dist/" ], "verbose": false }, "directories": { "doc": "docs" } }