forked from ValentinH/svelte-easy-crop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.76 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
{
"name": "svelte-easy-crop",
"version": "1.0.3",
"svelte": "src/index.svelte",
"module": "dist/index.mjs",
"main": "dist/index.js",
"description": "A Svelte component to crop images with easy interactions",
"homepage": "https://github.com/ValentinH/svelte-easy-crop",
"repository": {
"type": "git",
"url": "https://github.com/ValentinH/svelte-easy-crop"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"author": "Valentin Hervieu <[email protected]>",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"dev": "run-p start:dev build:dev",
"build:dev": "rollup -c rollup.config.example.js -w",
"start:dev": "sirv example/public --dev",
"prepublishOnly": "npm run build",
"test": "jest && yarn e2e",
"unit": "jest",
"unit:watch": "jest --watchAll",
"e2e": "start-server-and-test dev http://localhost:5000 cy:run",
"e2e:ci": "start-server-and-test dev http://localhost:5000 cy:ci",
"cy:open": "cypress open",
"cy:run": "cypress run",
"cy:ci": "cypress run --record",
"npm:publish": "np"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-object-rest-spread": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"cypress": "^3.2.0",
"jest": "^24.7.1",
"np": "^5.0.1",
"npm-run-all": "^4.1.5",
"query-string": "^6.5.0",
"rollup": "^1.10.1",
"rollup-plugin-babel": "^4.3.2",
"rollup-plugin-commonjs": "^9.3.4",
"rollup-plugin-node-resolve": "^4.2.3",
"rollup-plugin-svelte": "^5.0.3",
"rollup-plugin-terser": "^4.0.4",
"sirv-cli": "^0.3.1",
"start-server-and-test": "^1.9.0",
"svelte": "^3.0.0"
},
"keywords": [
"svelte",
"image crop",
"cropper"
],
"files": [
"src",
"dist"
]
}