-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
82 lines (82 loc) · 2.38 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@pierreericgarcia/react-step-progress-bar",
"version": "1.0.4",
"repository": {
"type": "git",
"url": "https://github.com/pierreericgarcia/react-step-progress-bar"
},
"description": "A library to create stunning progress bars and steps in React.",
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"keywords": [
"reactjs",
"react",
"react-component",
"react-library",
"progress-bar",
"progress bar",
"react progress bar",
"react-progress-bar",
"react-step-progress-bar",
"react.js",
"react library",
"react component"
],
"repository": {
"type": "git",
"url": "https://github.com/pierreericgarcia/react-step-progress-bar.git"
},
"homepage": "https://github.com/pierreericgarcia/react-step-progress-bar",
"license": "MIT",
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"dependencies": {
"classnames": "^2.3.1",
"invariant": "^2.2.4",
"react-transition-group": "^4.4.2",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
"scripts": {
"build-css": "node-sass-chokidar src/ -o .",
"watch-css": "npm run build-css && node-sass-chokidar src/ -o src/ --watch --recursive",
"test": "jest",
"dev": "microbundle watch --jsx React.createElement",
"lint": "eslint src",
"prebuild": "npm run build-css",
"build": "microbundle --jsx React.createElement",
"prepublish": "npm run build"
},
"author": {
"name": "Pierre-Eric Garcia",
"email": "garciapierreeric@gmail.com"
},
"devDependencies": {
"@babel/cli": "^7.16.0",
"@babel/core": "^7.16.0",
"@babel/eslint-parser": "^7.16.0",
"@babel/preset-env": "^7.16.0",
"@babel/preset-react": "^7.16.0",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"babel-eslint": "^10.1.0",
"babel-jest": "^27.3.1",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-react": "^7.26.1",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^27.3.1",
"microbundle": "^0.14.1",
"node-sass-chokidar": "^1.3.3",
"prettier-eslint": "^13.0.0",
"react-test-renderer": "^17.0.2"
}
}