-
Notifications
You must be signed in to change notification settings - Fork 202
/
package.json
87 lines (87 loc) · 3.26 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
{
"name": "moment-range",
"description": "Fancy date ranges for Moment.js",
"author": "Gianni Chiappetta <[email protected]> (https://butt.zone)",
"contributors": [
"Adam Biggs (lightmaker.com)",
"Mats Julian Olsen (https://github.com/mewwts)",
"Matt Patterson <[email protected]> (http://reprocessed.org/)",
"Wilgert Velinga <[email protected]> (http://neocles.io)",
"Tomasz Bak (http://twitter.com/tomaszbak)",
"Stuart Kelly (https://github.com/stuartleigh)",
"Jeremy Forsythe <[email protected]> (https://github.com/jdforsythe)",
"Александр Гренишин <[email protected]> (https://github.com/nd0ut)",
"@scotthovestadt (https://github.com/scotthovestadt)",
"Thomas van Lankveld (https://github.com/thomasvanlankveld)",
"nebel <[email protected]> (https://github.com/pronebel)",
"Kevin Ross <[email protected]> (http://www.alienfast.com)",
"Thomas Walpole <[email protected]> (https://github.com/twalpole)",
"Jonathan Kim <[email protected]> (jkimbo.co.uk)",
"Tymon Tobolski <[email protected]> (http://teamon.eu)",
"Aristide Niyungeko <[email protected]> (https://github.com/aristiden7o)",
"Bradley Ayers <[email protected]> (https://github.com/bradleyayers)",
"Ross Hadden <[email protected]> (http://rosshadden.github.com/resume)",
"Victoria French <[email protected]> (https://github.com/victoriafrench)",
"Jochen Diekenbrock (https://github.com/JochenDiekenbrock)"
],
"homepage": "https://github.com/rotaready/moment-range",
"bugs": "https://github.com/rotaready/moment-range/issues",
"main": "./dist/moment-range",
"version": "4.0.2",
"engines": {
"node": "*"
},
"files": [
"dist/"
],
"scripts": {
"build": "webpack -p",
"check": "yarn check:flow && yarn check:typescript",
"check:flow": "flow",
"check:typescript": "tsc --project ./typing-tests/typescript",
"doctoc": "doctoc README.md --github",
"lint": "eslint ./lib/",
"prepublishOnly": "yarn build && cp ./lib/*.flow ./lib/*.d.ts ./dist",
"preversion": "yarn check && yarn lint && yarn test",
"test": "karma start ./karma.conf.js",
"version": "yarn build && cp ./lib/*.flow ./lib/*.d.ts ./dist"
},
"typings": "./dist/moment-range.d.ts",
"devDependencies": {
"babel-core": "^6.18.2",
"babel-eslint": "^7.1.1",
"babel-loader": "^6.2.8",
"babel-plugin-transform-flow-strip-types": "^6.18.0",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"doctoc": "^1.4.0",
"eslint": "^3.11.1",
"eslint-loader": "^1.6.1",
"expect.js": "^0.3.1",
"flow-bin": "0.66.0",
"karma": "^1.3.0",
"karma-babel-polyfill": "0.0.5",
"karma-chrome-launcher": "^2.0.0",
"karma-expect": "^1.1.3",
"karma-mocha": "^1.3.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^2.0.2",
"mocha": "^2.5.3",
"moment": "^2.24.0",
"typescript": "^3.3.3333",
"webpack": "^2.2.1"
},
"peerDependencies": {
"moment": ">= 2"
},
"repository": {
"type": "git",
"url": "https://[email protected]/rotaready/moment-range.git"
},
"license": "Unlicense",
"dependencies": {
"es6-symbol": "^3.1.0"
}
}