-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
59 lines (59 loc) · 1.5 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
{
"name": "react-line-awesome",
"description": "React components for Line Awesome Icons",
"version": "1.4.1",
"keywords": [
"react",
"font awesome",
"line awesome"
],
"private": false,
"license": "MIT",
"homepage": "https://github.com/Bathlamos/react-line-awesome",
"author": "Philippe Legault <[email protected]> (https://legault.cc)",
"main": "dist/exports.js",
"types": "dist/exports.d.ts",
"peerDependencies": {
"react": ">=16.8.6",
"react-dom": ">=16.8.6"
},
"devDependencies": {
"@types/istanbul-lib-report": "^3.0.3",
"@types/react": "16.8.19",
"@types/react-dom": "16.8.4",
"commander": "^2.20.0",
"husky": "^8.0.0",
"prettier": "^1.17.1",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-scripts": "5.0.1",
"tslint": "^5.17.0",
"tslint-config-prettier": "^1.18.0",
"typescript": "5.3.3"
},
"dependencies": {},
"scripts": {
"start": "yarn generate:icons && yarn build",
"visualize": "react-scripts start",
"build": "NODE_ENV=production ./scripts/build.sh",
"generate:icons": "node scripts/generate-icons.js src/resources/line-awesome/css/line-awesome.css",
"prepare": "husky install"
},
"husky": {
"hooks": {
"pre-commit": "./scripts/pre-commit.sh"
}
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}