forked from date-fns/date-fns
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.45 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": "date-fns",
"version": "DON'T CHANGE; IT'S SET AUTOMATICALLY DURING DEPLOYMENT; ALSO, USE YARN FOR DEVELOPMENT",
"sideEffects": false,
"contributors": [
"Sasha Koss <[email protected]>",
"Lesha Koss <[email protected]>"
],
"license": "MIT",
"description": "Modern JavaScript date utility library",
"repository": "https://github.com/date-fns/date-fns",
"engine": {
"node": ">= 0.11"
},
"typings": "./typings.d.ts",
"main": "index.js",
"module": "esm/index.js",
"scripts": {
"test": "karma start config/karma.js",
"lint": "echo \"Due to ongoing migration to Prettier, the linter is disabled.\"",
"benchmark": "env TEST_BENCHMARK=true yarn test -- --single-run",
"stats": "cloc . --exclude-dir=node_modules,tmp,.git",
"postinstall": "node ./docs/printV2Notice.js"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
]
},
"prettier": {
"singleQuote": true,
"semi": false
},
"dependencies": {},
"devDependencies": {
"babel": "^6.5.2",
"babel-cli": "^6.6.5",
"babel-eslint": "^8.2.1",
"babel-loader": "7.1.5",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-preset-es2015": "^6.6.0",
"babel-preset-power-assert": "^1.0.0",
"cloc": "^2.2.0",
"firebase": "^3.7.1",
"flow-bin": "0.84.0",
"fs-promise": "^1.0.0",
"glob-promise": "^2.0.0",
"gzip-size-cli": "^1.0.0",
"husky": "^1.0.0-rc.7",
"js-beautify": "^1.5.10",
"jsdoc-to-markdown": "leshakoss/jsdoc-to-markdown",
"karma": "^3.0.0",
"karma-benchmark": "^1.0.0",
"karma-benchmark-reporter": "^0.1.1",
"karma-chrome-launcher": "2.2",
"karma-cli": "^1.0.1",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sauce-launcher": "^1.2.0",
"karma-sinon": "^1.0.4",
"karma-sourcemap-loader": "^0.3.5",
"karma-webpack": "^4.0.0-rc.5",
"lint-staged": "^7.1.1",
"lodash": "^4.17.4",
"lodash.clonedeep": "^4.5.0",
"mocha": "^3.2.0",
"moment": "^2.17.1",
"mz": "^2.7.0",
"node-fetch": "^1.3.3",
"power-assert": "^1.3.1",
"prettier": "^1.14.3",
"sinon": "^1.17.3",
"size-limit": "^0.21.0",
"snazzy": "^7.0.0",
"systemjs": "^0.19.39",
"systemjs-plugin-babel": "0.0.17",
"webpack": "4",
"webpack-cli": "^3.1.2",
"world-countries": "^1.8.1"
}
}