-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpackage.json
57 lines (57 loc) · 1.62 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
{
"name": "react-native-eva-icons",
"version": "1.4.0",
"private": true,
"description": "Eva Icons for React Native",
"workspaces": {
"packages": [
"lib"
]
},
"scripts": {
"playground": "yarn --cwd ./playground",
"build": "npm run build:lib && tsc && npm run lint",
"build:lib": "ts-node ./scripts/ts-node/start.ts ./lib/icons",
"rebuild": "npm run clean && npm run build",
"clean": "rimraf ./lib/icons ./dist",
"lint": "npm run lint:prettier && npm run lint:tslint",
"lint:tslint": "tslint -c ./tslint.json ./lib/icons/**/*.{ts,tsx} --fix",
"lint:prettier": "prettier ./lib/icons/**/*.{ts,tsx} --single-quote --jsx-single-quote --write",
"publish": "npm publish --access=public ./dist/tsc-out",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/artyorsh/react-native-eva-icons.git"
},
"keywords": [
"react-native",
"eva-icons",
"svg"
],
"author": "artyorsh",
"license": "MIT",
"bugs": {
"url": "https://github.com/artyorsh/react-native-eva-icons/issues"
},
"homepage": "https://github.com/artyorsh/react-native-eva-icons#readme",
"devDependencies": {
"@types/jest": "ts4.9",
"@types/node": "ts4.9",
"@types/react-native": "ts4.9",
"babel-jest": "29.0.3",
"change-case": "4.1.2",
"coveralls": "3.1.1",
"eva-icons": "1.1.3",
"jest": "29.0.3",
"prettier": "2.8.8",
"rimraf": "3.0.2",
"ts-jest": "29.0.5",
"ts-node": "10.9.1",
"tslint": "5.20.1",
"typescript": "4.9.5",
"react": "18.2.0",
"react-native": "0.71.7",
"react-native-svg": "13.9.0"
}
}