-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
99 lines (99 loc) · 2.38 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
89
90
91
92
93
94
95
96
97
98
99
{
"name": "cronr",
"version": "2.2.1",
"description": "Time-based job scheduler",
"main": "lib/normal/Cronr.cjs.js",
"files": [
"lib",
"src",
"CronrCounter.js",
"CronrWorker.js",
"index.js"
],
"scripts": {
"storybook": "start-storybook -p 9001 -c .storybook",
"storybook-export": "build-storybook -c .storybook -o docs",
"build": "rimraf lib && webpack --config scripts/webpack.config.js --display-chunks --display-error-details --hide-modules",
"test": "jest"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js",
"^.+\\.jsx?$": "babel-jest"
},
"testMatch": [
"**/test/*.(ts|tsx|js)"
]
},
"author": "youchao.liu",
"license": "MIT",
"devDependencies": {
"add-module-exports-webpack-plugin": "^0.1.0",
"babel-core": "^6.26.0",
"babel-jest": "^22.1.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-es2015-modules-commonjs": "^6.26.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-0": "^6.24.1",
"jest": "^21.2.1",
"lint-staged": "^7.0.4",
"parallel-webpack": "^2.3.0",
"prettier": "^1.11.1",
"react": "^16.3.2",
"react-dom": "^16.3.2",
"regenerator-runtime": "^0.11.1",
"rimraf": "^2.6.2",
"typescript": "^2.8.3",
"webpack-cli": "^2.0.15"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --parser typescript --write",
"git add"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryuever/cronr.git"
},
"dependencies": {
"@storybook/addon-actions": "^5.3.13",
"@storybook/addon-console": "^1.2.1",
"@storybook/addon-links": "^5.3.13",
"@storybook/addon-notes": "^5.3.13",
"@storybook/addons": "^5.3.13",
"@storybook/react": "^5.3.13",
"husky": "^4.2.3",
"ts-loader": "^4.2.0",
"webpack": "^4.6.0"
},
"bugs": {
"url": "https://github.com/ryuever/cronr/issues"
},
"homepage": "https://github.com/ryuever/cronr#readme",
"directories": {
"doc": "docs",
"lib": "lib",
"test": "test"
},
"keywords": [
"cron",
"crontab",
"millisecond",
"job-scheduler",
"client",
"browser",
"npm"
]
}