-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
79 lines (79 loc) · 1.88 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
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "react-countdown-hoc",
"version": "0.1.6",
"description": "countdown React component",
"main": "build/index.js",
"module": "build/index.es.js",
"jsnext:main": "build/index.es.js",
"scripts": {
"build": "rollup -c",
"lint": "standard",
"format": "prettier-standard --format",
"test": "jest --coverage",
"prepublish": "yarn build",
"start": "start-storybook"
},
"author": "wenisy",
"homepage": "https://github.com/wenisy/react-countdown",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/wenisy/react-countdown.git"
},
"keywords": [
"react-component",
"react",
"countdown",
"react-component-countdown"
],
"devDependencies": {
"@babel/core": "^7.7.7",
"@storybook/react": "^5.2.8",
"@testing-library/jest-dom": "^4.2.4",
"@testing-library/react": "^9.4.0",
"@types/jest": "^24.0.24",
"@types/react": "^16.9.17",
"@types/react-dom": "^16.9.4",
"awesome-typescript-loader": "^5.2.1",
"babel-loader": "^8.0.6",
"jest": "^24.9.0",
"prettier": "^2.0.5",
"prettier-standard": "^16.1.0",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"rollup": "^1.27.13",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-peer-deps-external": "^2.2.0",
"rollup-plugin-typescript2": "^0.25.3",
"standard": "^14.3.1",
"standard-prettier": "^1.0.1",
"ts-jest": "^24.2.0",
"typescript": "^3.7.3"
},
"peerDependencies": {
"react": "^16",
"react-dom": "^16"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "jsdom",
"testPathIgnorePatterns": [
"build/"
]
},
"standard": {
"ignore": [
"node_modules/",
"build/"
],
"globals": [
"describe",
"it",
"test",
"expect",
"afterAll",
"jest"
]
}
}