|
| 1 | +{ |
| 2 | + "name": "patternplate-transform-cssmodules", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "patternplate transform creating css modules", |
| 5 | + "main": "distribution/index.js", |
| 6 | + "files": [ |
| 7 | + "distribution" |
| 8 | + ], |
| 9 | + "scripts": { |
| 10 | + "start": "npm run watch", |
| 11 | + "clean": "rm -rf distribution", |
| 12 | + "prepare": "mkdir -p distribution", |
| 13 | + "prebuild": "parallelshell 'npm run test' 'npm run clean && npm run prepare'", |
| 14 | + "build": "babel source --out-dir distribution && echo '' || notify -t $npm_package_name -m 'Build failed! 😢'", |
| 15 | + "postbuild": "npm run notify", |
| 16 | + "test": "(eslint source/**/*.js && conventional-changelog-lint --to=HEAD~1 && jsonlint-cli **/*.json) && echo '' || notify -t $npm_package_name -m 'Linting failed! 😢'", |
| 17 | + "watch": "watch 'npm run build' source", |
| 18 | + "notify": "echo 'Build ready, happy hacking! ✊' && notify -t $npm_package_name -m 'Build ready, happy hacking! ✊'", |
| 19 | + "commit": "git-cz", |
| 20 | + "commitmsg": "conventional-changelog-lint -e", |
| 21 | + "changelog": "conventional-changelog --preset angular --infile changelog.md --same-file --output-unreleased", |
| 22 | + "push": "git push && git push --tags && hub release create \"v$(cat .git/RELEASE_VERSION.tmp)\" --message=\"v$(cat .git/RELEASE_VERSION.tmp)\n$(cat .git/COMMITMSG.tmp)\" && npm publish && rm .git/RELEASE_VERSION.tmp && rm .git/COMMITMSG.tmp", |
| 23 | + "release": "npm version $(conventional-recommended-bump -p angular)", |
| 24 | + "preversion": "npm run build && npm test", |
| 25 | + "version": "npm run changelog && git add . && echo \"$(conventional-changelog -p angular)\" > .git/COMMITMSG.tmp", |
| 26 | + "postversion": "echo $(git log -1 --pretty=%B HEAD^..HEAD) > .git/RELEASE_VERSION.tmp && git tag -d v$(cat .git/RELEASE_VERSION.tmp) && git commit --amend -m \"chore(release): $(cat .git/RELEASE_VERSION.tmp)\n$(cat .git/COMMITMSG.tmp)\" && git tag -a v$(cat .git/RELEASE_VERSION.tmp) -m \"$(cat .git/COMMITMSG.tmp)\"" |
| 27 | + }, |
| 28 | + "repository": { |
| 29 | + "type": "git", |
| 30 | + "url": "git+https://github.com/nerdlabs/patternplate-transform-cssmodules.git" |
| 31 | + }, |
| 32 | + "bugs": { |
| 33 | + "url": "https://github.com/nerdlabs/patternplate-transform-cssmodules/issues" |
| 34 | + }, |
| 35 | + "homepage": "https://github.com/nerdlabs/patternplate-transform-cssmodules#readme", |
| 36 | + "keywords": [ |
| 37 | + "react", |
| 38 | + "patternplate", |
| 39 | + "transform", |
| 40 | + "pattern" |
| 41 | + ], |
| 42 | + "author": { |
| 43 | + "name": "Nerdlabs", |
| 44 | + "email": "nerds@nerdlabs.it" |
| 45 | + }, |
| 46 | + "contributors": [ |
| 47 | + { |
| 48 | + "name": "Bjoern Brauer", |
| 49 | + "email": "zaubernerd@nerdlabs.it" |
| 50 | + }, |
| 51 | + { |
| 52 | + "name": "Mario Nebl", |
| 53 | + "email": "mario.nebl@sinnerschrader.com" |
| 54 | + } |
| 55 | + ], |
| 56 | + "license": "MIT", |
| 57 | + "licenses": [ |
| 58 | + "MIT" |
| 59 | + ], |
| 60 | + "devDependencies": { |
| 61 | + "babel": "6.5.2", |
| 62 | + "babel-cli": "6.4.0", |
| 63 | + "babel-eslint": "4.1.8", |
| 64 | + "babel-plugin-add-module-exports": "0.1.2", |
| 65 | + "babel-preset-es2015-node4": "2.0.3", |
| 66 | + "babel-preset-stage-0": "6.3.13", |
| 67 | + "commitizen": "2.5.0", |
| 68 | + "conventional-changelog-cli": "1.1.1", |
| 69 | + "conventional-changelog-lint": "0.3.1", |
| 70 | + "conventional-recommended-bump": "0.1.0", |
| 71 | + "cz-conventional-changelog": "1.1.5", |
| 72 | + "eslint": "1.10.3", |
| 73 | + "eslint-config-xo": "0.9.1", |
| 74 | + "eslint-plugin-babel": "3.1.0", |
| 75 | + "husky": "0.10.2", |
| 76 | + "jsonlint-cli": "0.2.7", |
| 77 | + "node-notifier": "4.4.0", |
| 78 | + "parallelshell": "2.0.0", |
| 79 | + "watch": "0.17.1" |
| 80 | + }, |
| 81 | + "dependencies": { |
| 82 | + "css-modules-loader-core": "1.0.0", |
| 83 | + "lodash": "4.5.1", |
| 84 | + "postcss": "5.0.18", |
| 85 | + "postcss-modules": "0.4.0" |
| 86 | + } |
| 87 | +} |
0 commit comments