ima-ui-atoms
Version:
IMA.js UI React atoms
132 lines (131 loc) • 3.57 kB
JSON
{
"name": "ima-ui-atoms",
"version": "1.3.0",
"description": "IMA.js UI React atoms",
"main": "index.js",
"scripts": {
"preversion": "npm test && npm run lint && npm run build",
"postversion": "npm run build && npm run changelog && git commit -am $npm_package_version && git tag $npm_package_version && git push && git push --tags && npm publish",
"lint": "node_modules/.bin/eslint -c ./.eslintrc.js --fix './src/**/*.{js,jsx}' './example/**/*.{js,jsx}' './*.js' --ignore-path ./.prettierignore",
"test": "node_modules/.bin/jest --no-watchman",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 1",
"commit": "node_modules/.bin/git-cz",
"copy": "node_modules/.bin/gulp copy",
"build": "node_modules/.bin/gulp build",
"dev": "node_modules/.bin/gulp dev"
},
"keywords": [
"React",
"UI",
"IMA",
"atoms"
],
"author": "Miroslav Jancarik <miroslav.jancarik@firma.seznam.cz>",
"repository": {
"type": "git",
"url": "https://github.com/seznam/IMA.js-ui-atoms.git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org/"
},
"bugs": {
"url": "https://github.com/seznam/IMA.js-ui-atoms/issues"
},
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.4.3",
"@babel/plugin-transform-modules-commonjs": "^7.4.3",
"@babel/preset-react": "^7.0.0",
"@commitlint/cli": "^7.5.2",
"@commitlint/config-conventional": "^7.5.0",
"babel-eslint": "^10.0.1",
"babel-jest": "^24.7.1",
"babelify": "10.0.0",
"browserify": "16.2.3",
"classnames": "2.2.6",
"commitizen": "^3.1.1",
"conventional-changelog-cli": "^2.0.12",
"cz-conventional-changelog": "^2.1.0",
"del": "4.1.0",
"enzyme": "3.9.0",
"enzyme-adapter-react-16": "^1.12.1",
"enzyme-to-json": "^3.3.5",
"eslint": "^5.16.0",
"eslint-config-last": "^0.0.5",
"eslint-config-prettier": "^4.1.0",
"eslint-plugin-jasmine": "^2.9.3",
"eslint-plugin-jest": "^22.5.0",
"eslint-plugin-prettier": "^3.0.1",
"eslint-plugin-react": "^7.12.4",
"gulp": "4.0.1",
"gulp-babel": "8.0.0",
"gulp-cached": "1.1.1",
"gulp-less": "4.0.1",
"gulp-remember": "1.0.1",
"gulp-rename": "1.4.0",
"husky": "^1.3.1",
"ima": "^0.16.4",
"ima-clientify": "^0.1.2",
"jest": "^24.7.1",
"prettier": "^1.17.0",
"prop-types": "15.7.2",
"react": "^16.7.0",
"react-dom": "^16.7.0",
"to-mock": "^1.5.2",
"watchify": "3.11.1"
},
"browserify": {
"transform": [
"ima-clientify",
"loose-envify",
"babelify"
]
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "node_modules/.bin/commitlint -e $GIT_PARAMS"
}
},
"peerDependencies": {
"prop-types": "16.x",
"react": "16.x",
"ima": "0.15.x"
},
"engines": {
"npm": ">=4 <6"
},
"dependencies": {
"infinite-circle": "^0.2.4"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
}
},
"jest": {
"bail": true,
"verbose": false,
"testEnvironment": "node",
"coverageThreshold": {
"global": {
"functions": 30,
"lines": 30,
"statements": 30
}
},
"setupFiles": [
"<rootDir>/setupJest.js"
],
"modulePaths": [
"<rootDir>/"
],
"snapshotSerializers": [
"enzyme-to-json/serializer"
],
"transform": {
"\\.jsx?": "./preprocess.js"
},
"testRegex": "(/src/(.*/)?__tests__/).*Spec\\.jsx?$"
}
}