-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.39 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 1.39 KB
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
{
"name": "ezcrop",
"main": "dist/ezcrop.js",
"description": "Javascript image crop tool with zooming and rotating.",
"version": "0.0.2",
"author": {
"name": "Saranga Abeykoon",
"email": "amisaranga@gmail.com",
"url": "https://github.com/nterms"
},
"keywords": [
"crop",
"zoom",
"cropit",
"image editor"
],
"homepage": "http://nterms.github.io/ezcrop",
"repository": {
"type": "git",
"url": "git://github.com/nterms/ezcrop.git"
},
"bugs": {
"url": "https://github.com/nterms/ezcrop/issues"
},
"license": "MIT",
"scripts": {
"test": "jest",
"jshint": "jshint src test --reporter=node_modules/jshint-stylish"
},
"jest": {
"scriptPreprocessor": "<rootDir>/node_modules/babel-jest",
"testFileExtensions": [
"js"
],
"moduleFileExtensions": [
"js",
"json"
],
"testDirectoryName": "test",
"unmockedModulePathPatterns": [
"constants",
"zoomer",
"ezcrop",
"plugin",
"lodash",
"fs"
]
},
"dependencies": {},
"devDependencies": {
"babel-core": "~5.5.8",
"babel-jest": "~5.3.0",
"babel-loader": "~5.1.4",
"jest-cli": "^0.8.2",
"jshint-stylish": "~2.0.0",
"lodash": "~3.9.3",
"node-libs-browser": "~0.5.2",
"webpack": "~1.9.11",
"webpack-dev-server": "~1.9.0"
},
"engine": "node >= 0.4.1",
"readmeFilename": "README.md"
}