forked from aeirola/react-native-svg-app-icon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.08 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
{
"name": "react-native-svg-app-icon",
"version": "0.5.0",
"description": "App icon generator for React Native projects",
"keywords": [
"react-native",
"svg",
"app-icon"
],
"homepage": "https://github.com/aeirola/react-native-svg-app-icon",
"bugs": {
"url": "https://github.com/aeirola/react-native-svg-app-icon/issues"
},
"files": [
"assets/",
"lib/"
],
"bin": {
"react-native-svg-app-icon": "lib/cli.js"
},
"main": "lib/index.js",
"scripts": {
"lint": "npm run lint:eslint && npm run lint:typescript",
"lint:eslint": "eslint 'src/**/*.ts'",
"lint:typescript": "tsc --noEmit",
"jest": "jest --runInBand src/",
"test": "npm run lint && npm run jest && npm run test:example",
"test:example": "cd example && npm test",
"build": "babel src/ -d lib/ -x .ts",
"prepare": "npm run build"
},
"author": "Axel Havukangas <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/aeirola/react-native-svg-app-icon.git"
},
"dependencies": {
"fs-extra": ">=3.0.0",
"sharp": ">=0.23.0",
"svg2vectordrawable": "2.6.26"
},
"devDependencies": {
"@babel/cli": "^7.12.17",
"@babel/core": "^7.12.17",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.12.17",
"@babel/preset-typescript": "^7.12.17",
"@types/fs-extra": "^9.0.7",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"@types/pixelmatch": "^5.2.2",
"@types/sharp": "^0.25.1",
"@types/tmp": "^0.2.0",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"babel-jest": "^26.6.3",
"babel-plugin-dynamic-import-node": "^2.3.3",
"eslint": "^7.20.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.3.1",
"glob": "^7.1.6",
"glob-promise": "^3.4.0",
"jest": "^26.6.3",
"pixelmatch": "^5.2.1",
"prettier": "^2.2.1",
"tmp": "^0.2.1",
"typescript": "^3.9.9"
},
"engines": {
"node": ">=12.0.0"
},
"jest": {
"testTimeout": 10000
}
}