This repository has been archived by the owner on Nov 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
77 lines (77 loc) · 2.36 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
69
70
71
72
73
74
75
76
77
{
"name": "angular-image-cropper",
"version": "0.0.0-development",
"description": "AngularJS directive for cropping images (responsive|touch).",
"main": "dist/angular-image-cropper.js",
"scripts": {
"commit": "git-cz",
"test": "NODE_ENV=test karma start",
"test:single": "SINGLE_RUN=true NODE_ENV=test karma start",
"check-coverage": "node_modules/.bin/istanbul check-coverage --statements 10 --branches 10 --functions 10 --lines 10",
"report-coverage": "cat ./coverage/report-lcov/lcov.info | codecov",
"serve": "node node_modules/.bin/webpack-dev-server --content-base dev --progress --colors",
"prebuild": "rm -rf dist && mkdir dist",
"build": "NODE_ENV=production node node_modules/.bin/webpack --progress --colors",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "https://github.com/bcabanes/angular-image-cropper.git"
},
"keywords": [
"angularjs",
"crop",
"image",
"rotate",
"zoom",
"drag",
"angularjs-module",
"fit",
"center",
"touch",
"responsive",
"fluid"
],
"author": "Benjamin Cabanes <contact@benjamincabanes.com> (http://benjamincabanes.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/bcabanes/angular-image-cropper/issues"
},
"homepage": "https://github.com/bcabanes/angular-image-cropper#readme",
"dependencies": {
"angular": "1.4.9",
"semantic-release-cli": "^3.0.3"
},
"devDependencies": {
"angular-mocks": "1.4.9",
"chai": "^4.1.1",
"codecov.io": "^0.1.6",
"commitizen": "^2.9.6",
"css-loader": "^0.28.7",
"cz-conventional-changelog": "^2.0.0",
"ghooks": "^2.0.0",
"istanbul-instrumenter-loader": "0.2.0",
"karma": "^1.7.1",
"karma-chai": "^0.1.0",
"karma-coverage": "^1.1.1",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-webpack": "^2.0.4",
"mocha": "^3.5.0",
"node-sass": "^4.5.3",
"phantomjs-prebuilt": "^2.1.15",
"sass-loader": "^6.0.6",
"semantic-release": "^7.0.2",
"style-loader": "^0.18.2",
"webpack": "^3.5.5",
"webpack-dev-server": "^2.7.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npm run test:single && npm run check-coverage"
}
}
}