-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
executable file
·81 lines (81 loc) · 2.36 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
{
"description": "Various image filters for iOS & Android",
"keywords": [
"react-native",
"image-filters",
"image-effects",
"image-mask",
"cssgram"
],
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"name": "react-native-image-filter-kit",
"author": "iyegoroff <[email protected]>",
"bugs": {
"url": "https://github.com/iyegoroff/react-native-image-filter-kit/issues"
},
"homepage": "https://github.com/iyegoroff/react-native-image-filter-kit#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/iyegoroff/react-native-image-filter-kit.git"
},
"version": "0.8.0",
"peerDependencies": {
"@babel/runtime": "*",
"react": "*",
"react-native": "*"
},
"dependencies": {
"concat-color-matrices": "^1.0.0",
"lodash.pick": "^4.4.0",
"react-is": "^17.0.2",
"rgba-to-rgb": "^1.0.2",
"rn-color-matrices": "^4.1.0",
"ts-tiny-invariant": "0.0.3"
},
"devDependencies": {
"@types/lodash.pick": "^4.4.6",
"@types/react-is": "^17.0.0",
"@types/react-native": "^0.64.5",
"patch-package": "^6.4.7",
"tslint": "^6.1.3",
"tslint-config-standard": "^9.0.0",
"tslint-react": "^5.0.0",
"typescript": "^4.2.4"
},
"standard": {
"globals": [
"__DEV__"
],
"ignore": [
"fable-typed",
"FilterConstructor"
]
},
"scripts": {
"build": "rm -rf dist && tsc -p ./src",
"watch": "tsc -p ./src -w",
"lint": "tslint --fix -p ./src && npm run lint:examples && npm run lint:haze-removal",
"lint:examples": "tslint --fix -p ./examples/CustomFilter/src && tslint --fix -p ./examples/CustomNativeFilter/src && tslint --fix -p ./examples/ImageExtraction/src",
"lint:haze-removal": "tslint --fix -p ./examples/CustomNativeFilter/local_modules/react-native-image-filter-kit-haze-removal/src",
"update:typings": "cp src/typings/index.d.ts dist/index.d.ts",
"build:all": "npm run lint && npm run build && npm run update:typings && :",
"preversion": "npm run build:all && git add -u && git commit -am lint || :",
"postversion": "git push && git push --tags"
},
"files": [
".dockerignore",
"android",
"ios",
"src",
"dist",
"examples/CustomFilter",
"examples/CustomNativeFilter",
"examples/ImageExtraction",
"tslint.json",
"*.md",
"*.podspec",
"LICENSE"
]
}