-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
76 lines (76 loc) · 2.06 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.6.1",
"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": {
"commander": "^7.2.0",
"fs-extra": ">=3.0.0",
"sharp": ">=0.23.0",
"svg2vectordrawable": "2.8.5"
},
"devDependencies": {
"@babel/cli": "^7.17.6",
"@babel/core": "^7.17.8",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/fs-extra": "^9.0.13",
"@types/jest": "^27.4.1",
"@types/node": "^17.0.23",
"@types/pixelmatch": "^5.2.4",
"@types/sharp": "^0.30.1",
"@types/tmp": "^0.2.3",
"@typescript-eslint/eslint-plugin": "^5.18.0",
"@typescript-eslint/parser": "^5.18.0",
"babel-jest": "^27.5.1",
"babel-plugin-dynamic-import-node": "^2.3.3",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"glob": "^7.2.0",
"glob-promise": "^4.2.2",
"jest": "^27.5.1",
"pixelmatch": "^5.2.1",
"prettier": "^2.6.2",
"tmp": "^0.2.1",
"typescript": "^4.6.3"
},
"engines": {
"node": ">=12.0.0"
},
"jest": {
"testTimeout": 10000
}
}