package.json 3.29 KB
Newer Older
Joe TS Dell's avatar
Joe TS Dell committed
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
100
101
102
103
104
105
106
107
108
109
{
  "_from": "flatpickr@^4.6.9",
  "_id": "flatpickr@4.6.9",
  "_inBundle": false,
  "_integrity": "sha512-F0azNNi8foVWKSF+8X+ZJzz8r9sE1G4hl06RyceIaLvyltKvDl6vqk9Lm/6AUUCi5HWaIjiUbk7UpeE/fOXOpw==",
  "_location": "/flatpickr",
  "_phantomChildren": {},
  "_requested": {
    "type": "range",
    "registry": true,
    "raw": "flatpickr@^4.6.9",
    "name": "flatpickr",
    "escapedName": "flatpickr",
    "rawSpec": "^4.6.9",
    "saveSpec": null,
    "fetchSpec": "^4.6.9"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/flatpickr/-/flatpickr-4.6.9.tgz",
  "_shasum": "9a13383e8a6814bda5d232eae3fcdccb97dc1499",
  "_spec": "flatpickr@^4.6.9",
  "_where": "/Users/rokaux/Sites/around-new",
  "author": {
    "name": "Gregory",
    "email": "gregory.mkv@gmail.com"
  },
  "browserslist": [
    "ie >= 9",
    "last 2 versions",
    "safari >= 7"
  ],
  "bugs": {
    "url": "https://github.com/chmln/flatpickr/issues"
  },
  "bundleDependencies": false,
  "deprecated": false,
  "description": "A lightweight, powerful javascript datetime picker",
  "devDependencies": {
    "@babel/core": "^7.12.10",
    "@babel/plugin-proposal-object-rest-spread": "^7.12.1",
    "@babel/plugin-proposal-optional-catch-binding": "^7.12.1",
    "@babel/preset-env": "^7.12.11",
    "@types/acorn": "^4.0.5",
    "@types/fs-extra": "^9.0.5",
    "@types/glob": "7.1.3",
    "@types/jest": "^26.0.19",
    "@types/jquery": "^3.5.5",
    "@types/node": "^14.14.14",
    "@types/stylus": "^0.48.33",
    "autoprefixer-stylus": "latest",
    "babel-plugin-transform-object-rest-spread": "^6.26.0",
    "chokidar": "^3.4.3",
    "coveralls": "^3.1.0",
    "fs-extra": "^9.0.1",
    "glob": "^7.1.6",
    "jest": "^26.6.3",
    "npm-run-all": ">=4.1.5",
    "prettier": "^2.2.1",
    "rimraf": "^3.0.2",
    "rollup": "^2.35.1",
    "rollup-plugin-babel": "^4.4.0",
    "rollup-plugin-livereload": "^2.0.0",
    "rollup-plugin-serve": "1.1.0",
    "rollup-plugin-typescript": "^1.0.1",
    "stylus": "latest",
    "terser": "^5.5.1",
    "ts-jest": "^26.4.4",
    "ts-node": "^9.1.1",
    "tslib": "^2.0.3",
    "typescript": "^4.1.3"
  },
  "homepage": "https://flatpickr.js.org",
  "keywords": [
    "javascript",
    "datetimepicker",
    "calendar",
    "date",
    "time",
    "picker",
    "lightweight"
  ],
  "license": "MIT",
  "main": "dist/flatpickr.js",
  "module": "dist/esm/index.js",
  "name": "flatpickr",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/chmln/flatpickr.git"
  },
  "scripts": {
    "build": "run-s build:pre build:build build:esm build:types build:post",
    "build:build": "ts-node --transpile-only build.ts",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:post": "cp src/typings.d.ts dist/typings.d.ts",
    "build:pre": "rimraf dist",
    "build:types": "tsc -p tsconfig.declarations.json",
    "coveralls": "npm run test:unit -- --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
    "fmt": "prettier --ignore-path .gitignore --trailing-comma es5 --write \"**/*.ts\"",
    "start": "npm run build:build -- --dev",
    "test": "run-s test:typecheck test:unit",
    "test:typecheck": "tsc --noEmit --incremental",
    "test:unit": "jest --config config/jest.json"
  },
  "style": "dist/flatpickr.css",
  "types": "./dist/typings.d.ts",
  "version": "4.6.9"
}