-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.66 KB
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
{
"name": "react-bootstrap-input-spinner",
"version": "1.0.2",
"description": "An input number spinner based on Bootstrap.",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"typings": "dist/index.d.ts",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "rollup -c",
"build-watch": "rollup -c -w",
"start-playground": "cd playground && npm run start",
"i-all": "npm i && cd playground && npm i",
"dev": "npm-run-all --parallel build-watch start-playground",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rodrigues-t/react-bootstrap-input-spinner.git"
},
"keywords": [
"react-component",
"react",
"reactjs",
"spinner",
"number",
"input",
"bootstrap",
"bootstrap-component",
"react-bootstrap"
],
"author": "Thiago Rodrigues <thiagonr86@gmail.com>",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/rodrigues-t/react-bootstrap-input-spinner/issues"
},
"homepage": "https://github.com/rodrigues-t/react-bootstrap-input-spinner#readme",
"devDependencies": {
"@types/react": "^16.14.3",
"@types/react-dom": "^16.9.10",
"npm-run-all": "^4.1.5",
"rollup": "^2.38.2",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.29.0",
"typescript": "^4.1.3"
},
"peerDependencies": {
"react": "^16.14.3",
"react-dom": "^16.9.10",
"bootstrap": "^4.6.0",
"react-bootstrap": "^1.4.3"
},
"dependencies": {
"bootstrap": "^4.6.0",
"react-bootstrap": "^1.4.3"
}
}