forked from phosphor-icons/react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.45 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
{
"name": "phosphor-react",
"version": "1.4.1",
"description": "A clean and friendly icon family for React",
"author": "rektdeckard",
"license": "MIT",
"repository": "phosphor-icons/phosphor-react",
"homepage": "https://phosphoricons.com",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"sideEffects": false,
"typings": "dist/index.d.ts",
"files": [
"dist",
"src"
],
"engines": {
"node": ">=10"
},
"keywords": [
"react",
"icons",
"svg",
"phosphor",
"design",
"interface",
"UI",
"UX"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test --passWithNoTests",
"lint": "tsdx lint",
"prepare": "tsdx build",
"collate": "node bin/collate.js",
"assemble": "node bin/assemble.js",
"format": "prettier --write \"./src/**/*.{js,jsx,ts,tsx,json,vue}\""
},
"peerDependencies": {
"react": ">=16"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": false,
"trailingComma": "es5"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^10.4.9",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"chalk": "^4.1.0",
"husky": "^4.2.5",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"tsdx": "^0.14.1",
"tslib": "^2.0.0",
"typescript": "^3.9.7"
}
}