-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.07 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
{
"name": "@pencil.js/image-manipulation",
"version": "0.2.0",
"description": "Pencil.js plugin to edit images",
"keywords": [
"pencil.js",
"plugin",
"image",
"pixel"
],
"main": "src/index.js",
"module": "./src/index.js",
"exports": {
"import": "./src/index.js"
},
"files": [
"src"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "ava"
},
"eslintConfig": {
"extends": "@gmartigny/eslint-config"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pencil-js/image-manipulation.git"
},
"author": "GMartigny",
"license": "MIT",
"bugs": {
"url": "https://github.com/pencil-js/image-manipulation/issues"
},
"homepage": "https://github.com/pencil-js/image-manipulation#readme",
"peerDependencies": {
"pencil.js": ">=2"
},
"devDependencies": {
"@gmartigny/eslint-config": "^1.6.0",
"eslint": "^7.22.0",
"pencil.js": "^2.1.0"
}
}