forked from scottcheng/cropit
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.39 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
{
"name": "cropit",
"main": "dist/jquery.cropit.js",
"description": "Customizable crop and zoom.",
"version": "0.4.5",
"author": {
"name": "Scott Cheng",
"email": "[email protected]",
"url": "http://scottcheng.com"
},
"keywords": [
"crop",
"zoom",
"image editor"
],
"homepage": "http://scottcheng.github.io/cropit",
"repository": {
"type": "git",
"url": "git://github.com/scottcheng/cropit.git"
},
"bugs": {
"url": "https://github.com/scottcheng/cropit/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",
"cropit",
"plugin",
"jquery",
"lodash",
"fs"
]
},
"dependencies": {
"jquery": ">=1.9"
},
"devDependencies": {
"babel-core": "~5.5.8",
"babel-jest": "~5.3.0",
"babel-loader": "~5.1.4",
"jest-cli": "~0.4.12",
"jshint-stylish": "~2.0.0",
"lodash": "~3.9.3",
"node-libs-browser": "~0.5.2",
"pica": "^1.0.7",
"webpack": "~1.9.11",
"webpack-dev-server": "~1.9.0"
},
"readmeFilename": "README.md"
}