-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
67 lines (67 loc) · 1.87 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
{
"name": "react-masked-field",
"description": "A masked field component built in React",
"author": "Rylan Collins <[email protected]>",
"version": "0.0.0-development",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Gusto/react-masked-field.git"
},
"bugs": {
"url": "https://github.com/Gusto/react-masked-field/issues"
},
"main": "lib/index.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"files": [
"LICENSE",
"README.md",
"CHANGELOG.md",
"lib"
],
"keywords": [
"react",
"react-component",
"mask",
"masked-field",
"masked-input"
],
"peerDependencies": {
"react": "^0.14 || ^15.0.0-rc || ^15.0 || ^16.0",
"react-dom": "^0.14 || ^15.0.0-rc || ^15.0, || ^16.0"
},
"devDependencies": {
"@types/enzyme": "^3.10.5",
"@types/enzyme-adapter-react-16": "^1.0.6",
"@types/jest": "^26.0.4",
"@types/react": "^16.9.43",
"@types/react-dom": "^16.9.8",
"enzyme": "^3.11.0",
"enzyme-adapter-react-16": "^1.15.2",
"eslint-config-gusto": "~9.2.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^26.1.0",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"rimraf": "^3.0.2",
"rollup": "^2.21.0",
"semantic-release": "^17.1.1",
"ts-jest": "^26.1.2",
"typescript": "^3.9.6",
"typescript-eslint-parser": "~21.0.2"
},
"scripts": {
"circle:execute": "circleci config process ./.circleci/config.yml > .circleci/processed-config.yml && circleci local execute -c .circleci/processed-config.yml --job",
"start": "karma start karma.dev.js",
"prebuild": "rimraf lib compiled",
"build": "tsc -p tsconfig.base.json && rollup -c",
"test": "jest",
"lint": "eslint --ext .js,.jsx,.ts,.tsx .",
"prepublishOnly": "npm run build"
},
"dependencies": {
"prop-types": "^15.7.2",
"tslib": "^1.9.3"
}
}