-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "react-progress-label",
"version": "3.1.7",
"description": "progress label component",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"react-native": "dist/native.js",
"types": "index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rm -rf dist && NODE_ENV=production rollup -c",
"test": "jest --coverage",
"prepublishOnly": "npm test && npm run build"
},
"files": [
"index.d.ts",
"dist"
],
"author": "Wang Zuo <[email protected]> (https://wangzuo.me/)",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/swiftcarrot/react-progress-label.git"
},
"keywords": [
"circle",
"progress",
"react",
"react-native",
"react-component"
],
"bugs": {
"url": "https://github.com/swiftcarrot/react-progress-label/issues"
},
"homepage": "https://swiftcarrot.dev/react-progress-label",
"jest": {
"collectCoverageFrom": [
"src/**/*.js"
]
},
"peerDependencies": {
"react": "^16.0.0 || ^17.0.0",
"react-dom": "^16.0.0 || ^17.0.0"
},
"devDependencies": {
"babel-jest": "^24.8.0",
"babel-preset-swiftcarrot": "^1.0.0",
"jest": "^24.8.0",
"react": "^16.8.6",
"react-dom": "^16.8.6",
"react-test-renderer": "^16.8.6",
"rollup": "^1.17.0",
"rollup-plugin-babel": "^4.3.3",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-node-resolve": "^5.2.0"
},
"dependencies": {
"@babel/runtime": "^7.5.5"
}
}