create-inferno-context
Version:
Polyfill for the proposed Inferno context API
69 lines (68 loc) • 1.69 kB
JSON
{
"name": "create-inferno-context",
"version": "0.2.4",
"description": "Polyfill for the proposed Inferno context API",
"main": "lib/index.js",
"repository": "https://github.com/kurdin/create-inferno-context",
"author": "Sergey Kurdin <skurdin@yahoo.com>",
"license": "MIT",
"keywords": [
"inferno",
"context",
"contextTypes",
"polyfill",
"ponyfill"
],
"files": [
"lib"
],
"scripts": {
"test": "jest",
"flow": "flow",
"format": "prettier --write '**/*.{js,md,json,js.flow,d.ts}'",
"build": "babel src -d lib --copy-files --ignore __tests__",
"prepublish": "yarn build",
"commit": "lint-staged"
},
"dependencies": {
"fbjs": "^0.8.0",
"gud": "^1.0.0"
},
"peerDependencies": {
"prop-types": "^15.0.0",
"inferno": "^5.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-flow": "^6.23.0",
"babel-preset-react": "^6.24.1",
"enzyme": "^3.2.0",
"enzyme-adapter-react-16": "^1.1.0",
"enzyme-to-json": "^3.2.2",
"flow-bin": "^0.60.1",
"husky": "^0.14.3",
"jest": "^21.2.1",
"lint-staged": "^6.0.0",
"prettier": "^1.9.1",
"prop-types": "^15.6.0",
"raf": "^3.4.0",
"webpack-cli": "^2.0.14",
"inferno-server": "^5.0.3",
"webpack": "^3.5.0",
"webpack-dev-server": "^3.1.3"
},
"lint-staged": {
"*.{js,md,json,js.flow,d.ts}": [
"prettier --write",
"git add"
]
},
"jest": {
"snapshotSerializers": [
"enzyme-to-json/serializer"
]
}
}