bloom-context-forms
Version:
context-wrapped form functionality for your bloom projects
98 lines (97 loc) • 2.84 kB
JSON
{
"name": "bloom-context-forms",
"version": "1.0.4",
"description": "context-wrapped form functionality for your bloom projects",
"main": "index.js",
"scripts": {
"build": "./node_modules/.bin/webpack --config=webpack.config.js",
"lint": "./node_modules/.bin/eslint './src/**' './example-form/src/**' --config ./.eslintrc --fix",
"pre-commit": "npm run test && npm run build && git add index.js",
"prettify": "node ./scripts/cross-os-prettier.js",
"test": "./node_modules/.bin/jest --notify"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vineyard-bloom/bloom-context-forms.git"
},
"keywords": [
"bloom",
"vineyard",
"context",
"react",
"forms"
],
"lint-staged": {
"*.{js,jsx}": [
"prettier --config .prettierrc --write",
"eslint --config ./.eslintrc --fix",
"git add"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged && npm run pre-commit"
}
},
"author": "inkblotty (http://inkblotty.github.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/vineyard-bloom/bloom-context-forms/issues"
},
"homepage": "https://github.com/vineyard-bloom/bloom-context-forms#readme",
"dependencies": {
"assert": "^1.4.1",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-loader": "^7.1.2",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"deep-freeze-strict": "^1.1.1",
"husky": "^0.15.0-rc.2",
"ignore-styles": "^5.0.1",
"immer": "^1.1.1",
"jsdom": "^11.2.0",
"prop-types": "^15.5.10",
"react": "^16.3.0",
"react-dom": "16.3.0",
"webpack": "^3.6.0"
},
"devDependencies": {
"enzyme": "3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"enzyme-react-adapter-future": "^1.1.3",
"eslint": "^4.17.0",
"eslint-config-standard": "^11.0.0-beta.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^6.0.0",
"eslint-plugin-promise": "^3.6.0",
"eslint-plugin-react": "^7.5.1",
"eslint-plugin-standard": "^3.0.1",
"jest": "^22.4.4",
"lint-staged": "^7.1.3",
"prettier": "1.10.2",
"react-test-renderer": "^16.3.0"
},
"jest": {
"setupFiles": [
"<rootDir>/__tests__/helpers/react-test-shim.js",
"<rootDir>/__tests__/helpers/react-test-setup.js"
],
"moduleFileExtensions": [
"js",
"jsx",
"json",
"node"
],
"testRegex": "(/__tests__/.*|(\\.|/)(.test))\\.(jsx?|tsx?)$",
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/helpers/*"
]
}
}