-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.42 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
86
87
88
{
"name": "react-pure-time",
"version": "0.2.8",
"description": "React pure time component which format date and time",
"main": "dist/react-pure-time.min.js",
"jnext:main": "dist/react-pure-time.min.js",
"scripts": {
"clean": "rimraf dist",
"build": "npm run clean && NODE_ENV=production npm run webpack:prod && npm run webpack:dev",
"clog": "conventional-changelog -i CHANGELOG.md -w",
"webpack:dev": "webpack --config webpack.config.dev.js",
"webpack:prod": "webpack --config webpack.config.js",
"release": "node ./scripts/release.js",
"test": "jest --ci",
"test:dev": "jest --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/max-mykhailenko/react-pure-time.git"
},
"keywords": [
"react",
"datetime",
"time",
"date",
"format"
],
"author": "Max Mykhailenko",
"license": "ISC",
"bugs": {
"url": "https://github.com/max-mykhailenko/react-pure-time/issues"
},
"homepage": "https://github.com/max-mykhailenko/react-pure-time#readme",
"devDependencies": {
"@babel/cli": "^7.0.0",
"@babel/core": "^7.15.8",
"@babel/plugin-transform-modules-commonjs": "^7.15.4",
"@babel/preset-react": "^7.0.0",
"@babel/preset-typescript": "7.15.0",
"@types/jest": "^27.0.2",
"@types/react": "^17.0.33",
"@types/react-dom": "^17.0.10",
"@types/react-test-renderer": "^17.0.1",
"babel-loader": "^8.2.3",
"babel-plugin-react-transform": "^3.0.0",
"conventional-changelog": "^1.1.7",
"eslint": "^4.16.0",
"eslint-config-airbnb": "^16.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-jsx-a11y": "^6.0.3",
"eslint-plugin-react": "^7.6.0",
"jest": "27.3.1",
"react": "^16.2.0",
"react-dom": "^16.14.0",
"react-test-renderer": "^16.2.0",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"ts-loader": "9.2.6",
"webpack": "^5.60.0",
"webpack-cli": "^4.9.1",
"yargs": "^11.0.0"
},
"peerDependencies": {
"react": "^15.0 || ^16.0 || ^17.0 || ^18.0"
},
"jest": {
"testURL": "http://localhost/",
"verbose": true,
"moduleFileExtensions": [
"js",
"jsx",
"ts",
"tsx"
],
"moduleDirectories": [
"node_modules",
"src"
],
"transform": {
"^.+\\.(ts|tsx)?$": "ts-jest",
"^.+\\.(js|jsx)$": "babel-jest"
}
},
"dependencies": {
"ts-jest": "27.0.7",
"typescript": "^4.4.4"
}
}