-
Notifications
You must be signed in to change notification settings - Fork 134
/
package.json
68 lines (68 loc) · 2.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "ng2-img-cropper",
"version": "0.8.10",
"description": "Angular2 Image Cropper Component",
"repository": {
"type": "git",
"url": "git+https://github.com/cstefanache/angular2-img-cropper.git"
},
"scripts": {
"tsc": "tsc",
"build": "npm run clean && ngc -p tsconfig-aot.json",
"clean": "rimraf dist",
"copy:release": "node tools/package.json-cleanup.js && copyfiles README.md LICENSE.md dist",
"preversion": "npm test && npm run build",
"version": "git commit -am \"Prerelease updates\" && git checkout -b release && git add -f ./",
"postversion": "git push --tags && git checkout master && git branch -D release && git push && npm publish",
"release:patch": "npm version patch && npm run copy:release && cd dist && npm publish",
"release:minor": "npm version minor && npm run copy:release && cd dist && npm publish",
"release:major": "npm version major && npm run copy:release && cd dist && npm publish",
"compile": "npm run compile:ts",
"compile:ts": "tsc",
"all": "concurrently \"tsc -w \" \"tsc -p runtime -w \" \"npm run lite\" ",
"start": "concurrently \"tsc -w \" \"tsc -p runtime -w \" \"npm run lite\" ",
"watch": "tsc -w ",
"lite": "lite-server"
},
"keywords": [
"angular2",
"image",
"cropper"
],
"license": "MIT",
"peerDependencies": {
"@angular/common": "^5.0.0",
"@angular/compiler": "^5.0.0",
"@angular/core": "^5.0.0"
},
"devDependencies": {
"@angular/common": "5.0.0",
"@angular/compiler": "5.0.0",
"@angular/compiler-cli": "^5.0.0",
"@angular/core": "5.0.0",
"@angular/forms": "5.0.0",
"@angular/http": "5.0.0",
"@angular/platform-browser": "5.0.0",
"@angular/platform-browser-dynamic": "5.0.0",
"angular-in-memory-web-api": "~0.5.1",
"concurrently": "^3.4.0",
"copyfiles": "^1.2.0",
"core-js": "^2.4.1",
"es6-shim": "^0.35.1",
"lite-server": "^2.2.2",
"ng2-tabs": "0.0.11",
"reflect-metadata": "^0.1.3",
"rimraf": "^2.6.1",
"systemjs": "0.19.27",
"typescript": "^2.1.5",
"typings": "^2.1.0",
"rxjs": "^5.5.2",
"version": "^0.1.2",
"zone.js": "^0.8.18"
},
"bugs": {
"url": "https://github.com/cstefanache/angular2-img-cropper/issues"
},
"homepage": "https://github.com/cstefanache/angular2-img-cropper#readme",
"author": "Cornel Stefanache"
}