forked from area17/twill-image
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.14 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
{
"name": "@area17/twill-image",
"version": "0.1.0",
"description": "Image module for Twill.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"browser": "dist/twill-image.js",
"sideEffects": false,
"scripts": {
"build": "rollup -c rollup.config.js",
"lint": "eslint resources/js",
"lint:fix": "eslint resources/js --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/area17/twill-image.git"
},
"author": "",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/area17/twill-image/issues"
},
"homepage": "https://github.com/area17/twill-image#readme",
"devDependencies": {
"eslint": "^7.25.0",
"eslint-config-prettier": "^8.3.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"path-parse": ">=1.0.7",
"prettier": "^2.3.2",
"rollup": "^2.47.0",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-terser": "^7.0.2"
},
"dependencies": {
"@prettier/plugin-php": "^0.17.3"
}
}