-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "tabler-icons-react",
"version": "1.56.0",
"description": "Tabler Icons for React",
"main": "./dist/cjs/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"sideEffects": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"generate": "node ./scripts/generate.js",
"build": "rimraf dist && rollup --config rollup.config.js",
"postbuild": "cp src/index.d.ts dist/index.d.ts"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/konradkalemba/tabler-icons-react.git"
},
"keywords": [
"react",
"icons"
],
"author": {
"name": "Konrad Kalemba",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/konradkalemba/tabler-icons-react/issues"
},
"homepage": "https://tabler-icons-react.vercel.app",
"devDependencies": {
"@babel/core": "^7.9.0",
"@babel/parser": "^7.9.4",
"@babel/preset-env": "^7.9.0",
"@babel/preset-react": "^7.9.4",
"@commitlint/cli": "^9.1.2",
"@commitlint/config-conventional": "^10.0.0",
"@rollup/plugin-babel": "^5.3.1",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@tabler/icons": "^1.115.0",
"@types/react": "^18.0.9",
"husky": "^7.0.4",
"prettier": "^2.0.2",
"rimraf": "^3.0.2",
"rollup": "^2.75.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"peerDependencies": {
"react": ">= 16.8.0"
}
}