-
Notifications
You must be signed in to change notification settings - Fork 319
/
package.json
67 lines (67 loc) · 1.67 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
{
"name": "eslint-plugin-you-dont-need-momentjs",
"description": "Check better alternatives you can use without momentjs",
"version": "1.6.0",
"repository": {
"type": "git",
"url": "https://github.com/you-dont-need/You-Dont-Need-Momentjs.git"
},
"keywords": [
"moment-js",
"date-fns",
"dayjs",
"luxon",
"eslint",
"eslintplugin",
"eslint-plugin",
"tree-shaking",
"you-dont-need"
],
"author": "Andrew Yang <[email protected]>",
"contributors": [
"Robert Chang <[email protected]>",
"Jago MF <[email protected]> (https://github.com/jagomf)",
"Steve Mao <[email protected]> (https://github.com/stevemao)",
"CY Lim <[email protected]> (https://l.cy.my/github)"
],
"main": "lib/index.js",
"scripts": {
"test:watch": "jest --watch",
"test": "jest --coverage",
"test:perf": "node ./__tests__/performance.js",
"coveralls": "cat ./coverage/lcov.info | coveralls",
"precommit": "pretty-quick --staged"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"coveralls": "^3.0.2",
"date-fns": "^2.0.0",
"dayjs": "^1.8.15",
"eslint": "^5.5.0",
"husky": "^0.14.3",
"jest": "^29.6.2",
"luxon": "^1.17.2",
"moment": "^2.24.0",
"prettier": "^1.14.2",
"pretty-quick": "^1.6.0"
},
"dependencies": {
"kebab-case": "^1.0.0"
},
"peerDependencies": {
"eslint": "^5.5.0 || ^7.0.0"
},
"jest": {
"collectCoverageFrom": [
"lib/**/*.js"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"./__tests__/performance.js"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/you-dont-need/You-Dont-Need-Momentjs/issues"
}
}