forked from wcandillon/react-native-img-cache
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.23 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
{
"name": "react-native-img-cache",
"version": "0.0.0-development",
"description": "CachedImage component for React native",
"main": "build/index.js",
"typings": "build/index.d.ts",
"scripts": {
"lint": "tslint --project tsconfig.json",
"build": "tsc --pretty",
"watch": "tsc --watch --pretty",
"test": "npm run lint && npm run build",
"release": "semantic-release pre && npm publish && semantic-release post"
},
"files": [
"build"
],
"repository": {
"type": "git",
"url": "https://github.com/wcandillon/react-native-img-cache.git"
},
"keywords": [
"react",
"image",
"cache"
],
"author": "William Candillon <wcandillon@gmail.com>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/wcandillon/react-native-img-cache/issues"
},
"homepage": "https://github.com/wcandillon/react-native-img-cache#readme",
"devDependencies": {
"@types/react": "^16.0.5",
"@types/react-native": "^0.49.2",
"condition-circle": "^1.5.0",
"semantic-release": "^6.3.2",
"ts-npm-lint": "^0.1.0",
"tslint": "^4.4.2",
"typescript": "^2.1.6"
},
"dependencies": {
"crypto-js": "^3.1.9-1"
},
"release": {
"verifyConditions": "condition-circle"
}
}