-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 1.91 KB
/
package.json
File metadata and controls
89 lines (89 loc) · 1.91 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "docker-scanimage",
"version": "0.0.1",
"description": "Docker container for scan image and upload to imgur",
"main": "lib",
"scripts": {
"start": "node lib",
"prebuild": "npm run lint -s && npm run clean -s",
"build": "babel src --out-dir lib --source-maps",
"lint": "eslint src",
"clean": "rimraf lib"
},
"engines": {
"node": ">=4"
},
"repository": {
"type": "git",
"url": "https://github.com/lgaticaq/docker-scanimage.git"
},
"keywords": [
"scanimage"
],
"author": "Leonardo Gatica <lgatica@protonmail.com> (https://about.me/lgatica)",
"license": "MIT",
"bugs": {
"url": "https://github.com/lgaticaq/docker-scanimage/issues"
},
"homepage": "https://github.com/lgaticaq/docker-scanimage#readme",
"dependencies": {
"bluebird": "^3.1.4",
"child-process-promise": "^1.1.0",
"core-worker": "^0.3.0",
"imagemagick": "^0.1.3",
"imgur": "^0.3.0",
"koa": "^2.0.0",
"koa-router": "^5.3.0",
"uuid": "^3.0.0"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-core": "6.26.3",
"babel-eslint": "8.2.6",
"babel-plugin-transform-async-to-generator": "6.24.1",
"babel-plugin-transform-regenerator": "6.26.0",
"babel-preset-es2015": "6.24.1",
"eslint": "4.19.1",
"rimraf": "2.6.3"
},
"eslintConfig": {
"parser": "babel-eslint",
"rules": {
"strict": 0,
"indent": [
2,
2
],
"quotes": [
2,
"single"
],
"linebreak-style": [
2,
"unix"
],
"semi": [
2,
"always"
]
},
"ecmaFeatures": {
"modules": true
},
"env": {
"es6": true,
"node": true,
"mocha": true
},
"extends": "eslint:recommended"
},
"babel": {
"presets": [
"es2015"
],
"plugins": [
"syntax-async-functions",
"transform-regenerator"
]
}
}