-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
85 lines (85 loc) · 2.08 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
80
81
82
83
84
85
{
"name": "one-cron",
"version": "0.4.3",
"description": "A Cron Expression Component Based React and Ant Design",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"scripts": {
"build": "webpack --config ./webpack.config.js",
"build:dist": "webpack -p --output-path=\"./dist\"",
"prepublishOnly": "npm run test && npm run build",
"start": "webpack-dev-server --config ./demo/webpack.config.js",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"moduleNameMapper": {
"\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "<rootDir>/__mocks__/fileMock.js",
"\\.(css|less)$": "identity-obj-proxy"
},
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.+(ts|tsx|js)"
]
},
"repository": {
"type": "git",
"url": "[email protected]:nefe/one-cron.git"
},
"files": [
"src",
"lib",
"*.md"
],
"keywords": [
"cron",
"react"
],
"author": "DT-NEFE",
"license": "MIT",
"devDependencies": {
"@types/enzyme": "^3.1.10",
"@types/enzyme-adapter-react-16": "^1.0.2",
"@types/jest": "^23.0.0",
"@types/lodash": "4.14.187",
"@types/react": "^16.14.34",
"@types/react-dom": "^16.9.14",
"@types/webpack-env": "^1.13.0",
"antd": "^4.18.8",
"css-loader": "^0.28.0",
"enzyme": "^3.3.0",
"enzyme-adapter-react-16": "^1.1.1",
"identity-obj-proxy": "^3.0.0",
"jest": "^23.1.0",
"jest-cli": "^23.1.0",
"jest-config": "^23.1.0",
"lodash": "~4.17.4",
"moment": "^2.22.1",
"react": "^16.14.0",
"react-dom": "^16.14.0",
"style-loader": "^0.16.1",
"ts-jest": "^22.4.6",
"ts-loader": "^3.5.0",
"typescript": "^4.5.2",
"webpack": "^2.4.1",
"webpack-dev-server": "^2.4.2"
},
"peerDependencies": {
"antd": "^4.18.8",
"lodash": "~4.17.4",
"moment": "^2.22.1",
"react": "^16.14.0",
"react-dom": "^16.14.0"
}
}