-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
65 lines (65 loc) · 1.61 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
{
"name": "react-input-number",
"version": "5.0.19",
"description": "React number input component",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && NODE_ENV=production rollup -c",
"test": "NODE_ENV=production jest --coverage",
"prepublishOnly": "npm test && npm run build",
"watch": "rollup -cw"
},
"keywords": [
"react",
"react-component",
"number",
"input"
],
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/swiftcarrot/react-input-number.git"
},
"author": "Wang Zuo <[email protected]> (https://swiftcarrot.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/swiftcarrot/react-input-number/issues"
},
"homepage": "https://swiftcarrot.dev/react-input-number",
"peerDependencies": {
"react": "^16.8.4",
"react-dom": "^16.8.4"
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"@emotion/core": "^10.0.14",
"lodash": "^4.17.15"
},
"devDependencies": {
"@rollup/plugin-babel": "^5.0.0",
"@rollup/plugin-commonjs": "^11.1.0",
"@rollup/plugin-node-resolve": "^7.1.3",
"babel-jest": "^24.8.0",
"babel-preset-swiftcarrot": "^1.0.0",
"enzyme": "^3.10.0",
"enzyme-adapter-react-16": "^1.14.0",
"jest": "^24.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rollup": "^1.17.0"
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"setupFiles": [
"<rootDir>/jest.setup.js"
]
}
}