forked from academia-de-codigo/react-semantic-toasts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.86 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
{
"name": "react-semantic-toasts",
"version": "0.6.6",
"description": "React Semantic UI alerts library",
"main": "build/index.js",
"types": "build/index.d.ts",
"keywords": [
"react",
"semantic ui",
"toast",
"alerts"
],
"scripts": {
"build": "babel lib -d build",
"build:watch": "babel lib -w -d build",
"eslint": "eslint lib/**/*.js",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"prepack": "copyfiles -u 1 lib/index.d.ts build",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/academia-de-codigo/react-semantic-alert.git"
},
"author": "<Academia de Código_>",
"license": "MIT",
"bugs": {
"url": "https://github.com/academia-de-codigo/react-semantic-alert/issues"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/plugin-proposal-class-properties": "^7.16.0",
"@babel/plugin-proposal-object-rest-spread": "^7.16.0",
"@babel/plugin-transform-async-to-generator": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-react": "^7.16.0",
"babel-eslint": "^10.0.3",
"babel-plugin-module-resolver": "^4.1.0",
"copyfiles": "^2.4.1",
"eslint": "^8.3.0",
"eslint-config-airbnb": "^19.0.1",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.27.1",
"eslint-config-prettier": "^8.3.0",
"prettier-eslint": "^13.0.0",
"semantic-ui-css": "^2.4.1"
},
"peerDependencies": {
"react": "16.x.x || 17.x.x",
"prop-types": "^15.7.2",
"semantic-ui-react": "*"
},
"dependencies": {}
}