This repository has been archived by the owner on Apr 10, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
100 lines (100 loc) · 2.3 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "@betterthings/scissors",
"version": "0.0.7",
"description": "handy image cropper with focus point editor",
"main": "lib/index.js",
"scripts": {
"build": "npm run build:lib && npm run build:es && npm run build:umd",
"build:lib": "tsc --outDir lib --module commonjs -d",
"build:es": "tsc --outDir es --module es2015 -d",
"build:umd": "webpack --mode=production",
"build:demo": "webpack --config demo/webpack.config.js",
"prebuild": "npm run clean",
"clean": "rimraf lib es dist demo/dist",
"precommit": "lint-staged",
"prepush": "npm test",
"test": "jest",
"serve-demo": "serve -l 7009 demo"
},
"lint-staged": {
"*.{js,json}": [
"prettier --write",
"git add"
]
},
"author": {
"name": "BTD - Better Things Digital GmbH",
"email": "hi@betterthings.digital",
"url": "https://betterthings.digital"
},
"contributors": [
{
"name": "Florian Hämmerle",
"email": "florian@betterthings.digital"
},
{
"name": "Patrick Schedler",
"email": "patrick@betterthings.digital"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/betterthingsdigital/scissors.git"
},
"bugs": {
"url": "https://github.com/betterthingsdigital/scissors/issues"
},
"keywords": [
"image",
"cropper",
"cropping",
"focus",
"scissors",
"react-component",
"react"
],
"files": [
"lib",
"dist",
"es"
],
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json"
],
"rootDir": "src",
"testRegex": "test.tsx?$"
},
"devDependencies": {
"@types/jest": "23.3.9",
"@types/react": "16.4.18",
"@types/react-dom": "16.0.9",
"@types/react-image-crop": "3.0.1",
"awesome-typescript-loader": "5.2.1",
"husky": "1.1.3",
"immutable": "3.8.2",
"jest": "23.6.0",
"lint-staged": "8.0.4",
"prettier": "1.14.3",
"react": "16.4.0",
"react-dom": "16.4.0",
"rimraf": "2.6.2",
"serve": "10.0.2",
"source-map-loader": "0.2.4",
"ts-jest": "23.10.4",
"typescript": "3.1.6",
"webpack": "4.25.1",
"webpack-cli": "3.1.2"
},
"dependencies": {
"react-image-crop": "4.0.1"
}
}