-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.33 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.33 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
{
"name": "react-individual-character-input-boxes",
"version": "1.2.1",
"description": "Simple single character input boxes.",
"repository": "https://github.com/dannyradden/single-character-input-boxes",
"author": "Danny Radden",
"license": "MIT",
"types": "./index.d.ts",
"main": "dist/ReactIndividualCharacterInputBoxes.js",
"targets": {
"types": false
},
"scripts": {
"clear-build-cache": "rm -rf .parcel-cache/ dist/ demo-output/",
"clear-npm-data": "rm -rf node_modules package-lock.json",
"dev": "npm run clear-build-cache && parcel demo/index.html --dist-dir=demo-output/",
"prepublishOnly": "npm run clear-build-cache && parcel build src/ReactIndividualCharacterInputBoxes.js",
"prod-demo": "parcel build demo/index.html --dist-dir=demo-output/",
"release": "npm run prepublishOnly && np --no-tests"
},
"keywords": [
"react",
"character",
"individual",
"single",
"InputBox",
"input",
"factor",
"authorization",
"boxes"
],
"peerDependencies": {
"react": ">= 16.8.1",
"react-dom": ">= 16.8.1"
},
"devDependencies": {
"parcel": ">=2.7.0",
"process": "^0.11.10",
"react": ">=16.13.1",
"react-dom": ">=16.13.1",
"react-is": "18.2.0"
},
"dependencies": {
"prop-types": ">=15.7.2",
"styled-components": ">=4.4.0"
}
}