|
| 1 | +{ |
| 2 | + "name": "angular2-resizable", |
| 3 | + "version": "0.0.0", |
| 4 | + "description": "An angular2 directive that allows an element to be dragged and resized", |
| 5 | + "main": "./angular2-resizable.js", |
| 6 | + "typings": "./angular2-resizable.d.ts", |
| 7 | + "scripts": { |
| 8 | + "prestart": "typings install", |
| 9 | + "start": "concurrently \"webpack-dev-server\" \"npm run test:watch\" \"open http://localhost:8000\"", |
| 10 | + "build:demo": "webpack -p", |
| 11 | + "build:dist": "webpack --config webpack.config.dist.js", |
| 12 | + "pretest": "typings install", |
| 13 | + "test": "karma start", |
| 14 | + "test:watch": "karma start --watch", |
| 15 | + "clean": "del ./src/*.d.ts ./demo/*.d.ts ./test/*.d.ts angular2-resizable.d.ts angular2-resizable.js*", |
| 16 | + "commit": "git-cz", |
| 17 | + "changelog": "conventional-changelog -p angular -i CHANGELOG.md -s", |
| 18 | + "typedoc": "typedoc --options typedoc.json angular2-resizable.ts src/*.ts", |
| 19 | + "gh-pages": "git checkout gh-pages && git merge master && npm run build:demo && npm run typedoc && git add . && git commit -m 'chore: build demo and docs' && git push && git checkout master", |
| 20 | + "prerelease": "npm test", |
| 21 | + "release": "standard-version --first-release && git push --follow-tags origin master && npm run build:dist && npm publish", |
| 22 | + "postrelease": "npm run clean && npm run gh-pages" |
| 23 | + }, |
| 24 | + "repository": { |
| 25 | + "type": "git", |
| 26 | + "url": "git+https://github.com/mattlewis92/angular2-resizable.git" |
| 27 | + }, |
| 28 | + "keywords": [ |
| 29 | + "angular2" |
| 30 | + ], |
| 31 | + "author": "Matt Lewis", |
| 32 | + "license": "MIT", |
| 33 | + "bugs": { |
| 34 | + "url": "https://github.com/mattlewis92/angular2-resizable/issues" |
| 35 | + }, |
| 36 | + "homepage": "https://github.com/mattlewis92/angular2-resizable#readme", |
| 37 | + "devDependencies": { |
| 38 | + "@angular/common": "2.0.0-rc.1", |
| 39 | + "@angular/compiler": "2.0.0-rc.1", |
| 40 | + "@angular/core": "2.0.0-rc.1", |
| 41 | + "@angular/platform-browser": "2.0.0-rc.1", |
| 42 | + "@angular/platform-browser-dynamic": "2.0.0-rc.1", |
| 43 | + "commitizen": "~2.8.1", |
| 44 | + "concurrently": "~2.1.0", |
| 45 | + "conventional-changelog": "~1.1.0", |
| 46 | + "conventional-changelog-cli": "~1.2.0", |
| 47 | + "cz-conventional-changelog": "~1.1.6", |
| 48 | + "del-cli": "~0.2.0", |
| 49 | + "es6-shim": "~0.35.0", |
| 50 | + "ghooks": "~1.2.1", |
| 51 | + "istanbul-instrumenter-loader": "~0.2.0", |
| 52 | + "jasmine-core": "~2.4.1", |
| 53 | + "karma": "~0.13.22", |
| 54 | + "karma-coverage": "~1.0.0", |
| 55 | + "karma-jasmine": "~1.0.2", |
| 56 | + "karma-phantomjs-launcher": "~1.0.0", |
| 57 | + "karma-sourcemap-loader": "~0.3.7", |
| 58 | + "karma-webpack": "~1.7.0", |
| 59 | + "phantomjs-prebuilt": "~2.1.7", |
| 60 | + "reflect-metadata": "0.1.2", |
| 61 | + "rxjs": "5.0.0-beta.6", |
| 62 | + "standard-version": "~2.2.1", |
| 63 | + "ts-loader": "~0.8.2", |
| 64 | + "tslint": "~3.10.0", |
| 65 | + "tslint-loader": "~2.1.4", |
| 66 | + "typedoc": "~0.3.12", |
| 67 | + "typescript": "~1.8.10", |
| 68 | + "typings": "~1.0.4", |
| 69 | + "validate-commit-msg": "~2.6.1", |
| 70 | + "webpack": "~1.13.0", |
| 71 | + "webpack-dev-server": "~1.14.1", |
| 72 | + "zone.js": "~0.6.12" |
| 73 | + }, |
| 74 | + "peerDependencies": { |
| 75 | + "@angular/core": "2.0.0-rc.1" |
| 76 | + }, |
| 77 | + "files": [ |
| 78 | + "angular2-resizable.js", |
| 79 | + "angular2-resizable.js.map", |
| 80 | + "angular2-resizable.d.ts", |
| 81 | + "src/**/*.d.ts" |
| 82 | + ], |
| 83 | + "config": { |
| 84 | + "ghooks": { |
| 85 | + "commit-msg": "validate-commit-msg" |
| 86 | + }, |
| 87 | + "commitizen": { |
| 88 | + "path": "node_modules/cz-conventional-changelog" |
| 89 | + } |
| 90 | + } |
| 91 | +} |
0 commit comments