|
| 1 | +{ |
| 2 | + "name": "js-library-boilerplate", |
| 3 | + "version": "0.1.0", |
| 4 | + "description": "js-library-boilerplate-description", |
| 5 | + "main": "dist/js-library-boilerplate.js", |
| 6 | + "unpkg": "dist/js-library-boilerplate.min.js", |
| 7 | + "scripts": { |
| 8 | + "clean": "rimraf dist", |
| 9 | + "dev": "NODE_ENV=dev webpack --progress --colors --watch", |
| 10 | + "build:umd": "NODE_ENV=production webpack", |
| 11 | + "lint": "eslint src tests", |
| 12 | + "test": "jest --coverage --expand", |
| 13 | + "test:watch": "jest --watch", |
| 14 | + "coveralls": "cat ./coverage/lcov.info | coveralls && rm -rf ./coverage", |
| 15 | + "prepublish": "yarn lint && yarn test && yarn clean && yarn build:umd", |
| 16 | + "commit": "git-cz" |
| 17 | + }, |
| 18 | + "keywords": [], |
| 19 | + "author": "Helder Burato Berto <[email protected]> (https://helder.dev/)", |
| 20 | + "license": "MIT", |
| 21 | + "repository": { |
| 22 | + "type": "git", |
| 23 | + "url": "git+https://github.com/codevor/js-library-boilerplate.git" |
| 24 | + }, |
| 25 | + "bugs": { |
| 26 | + "url": "https://github.com/codevor/js-library-boilerplate/issues" |
| 27 | + }, |
| 28 | + "homepage": "https://github.com/codevor/js-library-boilerplate#readme", |
| 29 | + "devDependencies": { |
| 30 | + "@babel/cli": "^7.6.4", |
| 31 | + "@babel/core": "^7.6.4", |
| 32 | + "@babel/preset-env": "^7.6.3", |
| 33 | + "babel-jest": "^24.9.0", |
| 34 | + "babel-loader": "^8.0.6", |
| 35 | + "commitizen": "^4.0.3", |
| 36 | + "coveralls": "^3.0.7", |
| 37 | + "cz-conventional-changelog": "3.0.2", |
| 38 | + "eslint": "^6.5.1", |
| 39 | + "eslint-config-airbnb-base": "^14.0.0", |
| 40 | + "eslint-config-prettier": "^6.4.0", |
| 41 | + "eslint-plugin-import": "^2.18.2", |
| 42 | + "husky": "^3.0.9", |
| 43 | + "jest": "^24.9.0", |
| 44 | + "rimraf": "^3.0.0", |
| 45 | + "uglifyjs-webpack-plugin": "^2.2.0", |
| 46 | + "webpack": "^4.41.1", |
| 47 | + "webpack-cli": "^3.3.9" |
| 48 | + }, |
| 49 | + "config": { |
| 50 | + "commitizen": { |
| 51 | + "path": "./node_modules/cz-conventional-changelog" |
| 52 | + } |
| 53 | + } |
| 54 | +} |
0 commit comments