|
| 1 | +{ |
| 2 | + "name": "stack-overflow-copy-paste", |
| 3 | + "version": "1.0.0", |
| 4 | + "description": "Utility functions copy/pasted (and modified slightly) from Stack Overflow", |
| 5 | + "main": "dist/index.js", |
| 6 | + "scripts": { |
| 7 | + "commit": "git-cz", |
| 8 | + "prebuild": "npm run lint && npm run clean", |
| 9 | + "clean": "rimraf dist && mkdir dist", |
| 10 | + "build": "babel src/ -d dist/", |
| 11 | + "test": "ava --require babel-register", |
| 12 | + "lint": "eslint src/" |
| 13 | + }, |
| 14 | + "repository": { |
| 15 | + "type": "git", |
| 16 | + "url": "git+https://github.com/eggheadio-github/stack-overflow-copy-paste.git" |
| 17 | + }, |
| 18 | + "keywords": [], |
| 19 | + "files": [ |
| 20 | + "dist" |
| 21 | + ], |
| 22 | + "author": "Kent C. Dodds <kent@doddsfamily.us> (http://kentcdodds.com/)", |
| 23 | + "license": "MIT", |
| 24 | + "bugs": { |
| 25 | + "url": "https://github.com/eggheadio-github/stack-overflow-copy-paste/issues" |
| 26 | + }, |
| 27 | + "homepage": "https://github.com/eggheadio-github/stack-overflow-copy-paste#readme", |
| 28 | + "devDependencies": { |
| 29 | + "ava": "0.10.0", |
| 30 | + "babel-cli": "6.4.5", |
| 31 | + "babel-preset-es2015": "6.3.13", |
| 32 | + "babel-preset-stage-2": "6.3.13", |
| 33 | + "babel-register": "6.4.3", |
| 34 | + "commitizen": "2.5.0", |
| 35 | + "cz-conventional-changelog": "1.1.5", |
| 36 | + "eslint": "1.10.3", |
| 37 | + "eslint-config-kentcdodds": "5.0.1", |
| 38 | + "ghooks": "1.0.3", |
| 39 | + "nodemon": "1.8.1", |
| 40 | + "rimraf": "2.5.0", |
| 41 | + "validate-commit-msg": "1.1.1" |
| 42 | + }, |
| 43 | + "config": { |
| 44 | + "ghooks": { |
| 45 | + "commit-msg": "validate-commit-msg", |
| 46 | + "pre-commit": "npm t && npm run build" |
| 47 | + }, |
| 48 | + "commitizen": { |
| 49 | + "path": "node_modules/cz-conventional-changelog" |
| 50 | + } |
| 51 | + }, |
| 52 | + "babel": { |
| 53 | + "presets": [ |
| 54 | + "es2015", |
| 55 | + "stage-2" |
| 56 | + ] |
| 57 | + }, |
| 58 | + "eslintConfig": { |
| 59 | + "extends": "kentcdodds" |
| 60 | + } |
| 61 | +} |
0 commit comments