UNPKG

3.14 kBJSONView Raw
1{
2 "name": "date-fns",
3 "version": "2.0.1",
4 "sideEffects": false,
5 "contributors": ["Sasha Koss <koss@nocorp.me>", "Lesha Koss <regiusprod@gmail.com>"],
6 "license": "MIT",
7 "description": "Modern JavaScript date utility library",
8 "repository": "https://github.com/date-fns/date-fns",
9 "engine": {
10 "node": ">= 0.11"
11 },
12 "typings": "./typings.d.ts",
13 "main": "index.js",
14 "module": "esm/index.js",
15 "scripts": {
16 "test": "karma start config/karma.js",
17 "lint": "eslint .",
18 "lint-types": "eslint --config=.ts-eslintrc.js typings.d.ts",
19 "locale-snapshots": "env TZ=utc babel-node ./scripts/build/localeSnapshots/index.js",
20 "benchmark": "env TEST_BENCHMARK=true yarn test --single-run",
21 "stats": "cloc . --exclude-dir=node_modules,tmp,.git"
22 },
23 "husky": {
24 "hooks": {
25 "pre-commit": "lint-staged"
26 }
27 },
28 "lint-staged": {
29 "*.js": ["prettier --write", "git add"]
30 },
31 "dependencies": {},
32 "devDependencies": {
33 "@babel/cli": "^7.5.5",
34 "@babel/core": "^7.5.5",
35 "@babel/node": "^7.5.5",
36 "@babel/plugin-transform-arrow-functions": "^7.2.0",
37 "@babel/plugin-transform-block-scoping": "^7.5.5",
38 "@babel/plugin-transform-destructuring": "^7.5.0",
39 "@babel/plugin-transform-modules-commonjs": "^7.5.0",
40 "@babel/plugin-transform-parameters": "^7.4.4",
41 "@babel/plugin-transform-template-literals": "^7.4.4",
42 "@typescript-eslint/eslint-plugin": "^1.13.0",
43 "@typescript-eslint/parser": "^1.13.0",
44 "babel-eslint": "^10.0.2",
45 "babel-loader": "8.0.6",
46 "babel-plugin-add-module-exports": "^1.0.2",
47 "babel-preset-power-assert": "^3.0.0",
48 "cloc": "^2.2.0",
49 "coveralls": "^3.0.6",
50 "eslint": "^5.16.0",
51 "eslint-config-prettier": "^4.3.0",
52 "firebase": "^3.7.1",
53 "flow-bin": "0.84.0",
54 "fs-promise": "^1.0.0",
55 "glob-promise": "^2.0.0",
56 "gzip-size-cli": "^1.0.0",
57 "husky": "^1.0.1",
58 "istanbul-instrumenter-loader": "^3.0.1",
59 "jest": "^24.8.0",
60 "jest-plugin-context": "^2.9.0",
61 "js-beautify": "^1.5.10",
62 "jsdoc-to-markdown": "leshakoss/jsdoc-to-markdown",
63 "karma": "^3.1.4",
64 "karma-benchmark": "^1.0.4",
65 "karma-benchmark-reporter": "^0.1.1",
66 "karma-chrome-launcher": "2.2",
67 "karma-cli": "^1.0.1",
68 "karma-coverage": "^1.1.2",
69 "karma-coverage-istanbul-reporter": "^2.1.0",
70 "karma-mocha": "^1.3.0",
71 "karma-mocha-reporter": "^2.2.5",
72 "karma-phantomjs-launcher": "^1.0.4",
73 "karma-sauce-launcher": "^1.2.0",
74 "karma-sourcemap-loader": "^0.3.5",
75 "karma-webpack": "^4.0.2",
76 "lint-staged": "^7.3.0",
77 "lodash": "^4.17.15",
78 "lodash.clonedeep": "^4.5.0",
79 "mocha": "^3.5.3",
80 "moment": "^2.24.0",
81 "mz": "^2.7.0",
82 "node-fetch": "^1.7.3",
83 "power-assert": "^1.6.1",
84 "prettier": "^1.18.2",
85 "rimraf": "^2.7.1",
86 "sinon": "^7.4.1",
87 "size-limit": "^0.21.0",
88 "snazzy": "^7.0.0",
89 "systemjs": "^0.19.39",
90 "systemjs-plugin-babel": "0.0.17",
91 "typescript": "^3.5.3",
92 "webpack": "4",
93 "webpack-cli": "^3.1.2",
94 "world-countries": "^1.8.1"
95 },
96 "resolutions": {
97 "ajv": "6.8.1"
98 }
99}