|
| 1 | +{ |
| 2 | + "name": "@4c/context", |
| 3 | + "version": "0.0.0-development", |
| 4 | + "main": "lib/index.js", |
| 5 | + "modules": "es/index.js", |
| 6 | + "jsnext:main": "es/index.js", |
| 7 | + "repository": { |
| 8 | + "type": "git", |
| 9 | + "url": "https://github.com/4Catalyzer/context.git" |
| 10 | + }, |
| 11 | + "author": "4Catalyzer", |
| 12 | + "license": "MIT", |
| 13 | + "scripts": { |
| 14 | + "tdd": "jest --watch", |
| 15 | + "test": "npm run lint && jest", |
| 16 | + "testonly": "jest", |
| 17 | + "build:es": "babel src -d es --env-name esm --ignore **/__tests__ --delete-dir-on-start", |
| 18 | + "build:lib": "babel src -d lib --ignore **/__tests__ --delete-dir-on-start", |
| 19 | + "build": "npm run build:lib && npm run build:es", |
| 20 | + "prepublishOnly": "yarn run build", |
| 21 | + "lint": "eslint . && prettier --list-different --ignore-path .eslintignore '**/*.{json,css,md}'", |
| 22 | + "format": "eslint . --fix && prettier --write --ignore-path .eslintignore '**/*.{json,css,md}'", |
| 23 | + "precommit": "lint-staged", |
| 24 | + "travis-deploy-once": "travis-deploy-once", |
| 25 | + "semantic-release": "semantic-release" |
| 26 | + }, |
| 27 | + "publishConfig": { |
| 28 | + "access": "public" |
| 29 | + }, |
| 30 | + "prettier": { |
| 31 | + "printWidth": 79, |
| 32 | + "singleQuote": true, |
| 33 | + "trailingComma": "all" |
| 34 | + }, |
| 35 | + "lint-staged": { |
| 36 | + "*.js": [ |
| 37 | + "eslint --fix", |
| 38 | + "git add" |
| 39 | + ], |
| 40 | + "*.{json,css,md}": [ |
| 41 | + "prettier --write --ignore-path .eslintignore", |
| 42 | + "git add" |
| 43 | + ] |
| 44 | + }, |
| 45 | + "jest": { |
| 46 | + "roots": [ |
| 47 | + "<rootDir>/test" |
| 48 | + ], |
| 49 | + "testEnvironment": "jsdom", |
| 50 | + "setupFiles": [ |
| 51 | + "<rootDir>/test/index.js" |
| 52 | + ] |
| 53 | + }, |
| 54 | + "release": { |
| 55 | + "extends": [ |
| 56 | + "@4c/semantic-release-config" |
| 57 | + ] |
| 58 | + }, |
| 59 | + "devDependencies": { |
| 60 | + "@4c/babel-preset-4catalyzer": "^1.0.0", |
| 61 | + "@4c/semantic-release-config": "^1.0.2", |
| 62 | + "@babel/cli": "^7.0.0-beta.39", |
| 63 | + "@babel/core": "^7.0.0-beta.39", |
| 64 | + "@monastic.panic/enzyme-adapter-react-16": "^1.2.2", |
| 65 | + "babel-core": "bridge", |
| 66 | + "babel-eslint": "^8.2.1", |
| 67 | + "babel-jest": "^22.4.3", |
| 68 | + "codecov": "^3.0.2", |
| 69 | + "enzyme": "^3.3.0", |
| 70 | + "eslint": "^4.16.0", |
| 71 | + "eslint-config-4catalyzer-react": "^0.4.1", |
| 72 | + "eslint-config-prettier": "^2.9.0", |
| 73 | + "eslint-plugin-import": "^2.8.0", |
| 74 | + "eslint-plugin-jest": "^21.7.0", |
| 75 | + "eslint-plugin-jsx-a11y": "^6.0.3", |
| 76 | + "eslint-plugin-prettier": "^2.5.0", |
| 77 | + "eslint-plugin-react": "^7.5.1", |
| 78 | + "husky": "^0.14.3", |
| 79 | + "lint-staged": "^7.1.0", |
| 80 | + "prettier": "^1.10.2", |
| 81 | + "react": "^16.3.2", |
| 82 | + "react-dom": "^16.3.2", |
| 83 | + "semantic-release": "^15.4.0", |
| 84 | + "travis-deploy-once": "^5.0.0" |
| 85 | + }, |
| 86 | + "peerDependencies": { |
| 87 | + "react": ">=16.3.2" |
| 88 | + } |
| 89 | +} |
0 commit comments