-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
59 lines (59 loc) · 1.39 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
{
"name": "jstz",
"version": "2.1.1",
"main": "index.js",
"description": "Timezone detection for JavaScript",
"scripts": {
"build": "gulp build",
"pretest": "npm run build",
"test": "./node_modules/.bin/mocha",
"bump:patch": "npm run build && npm version patch -m \"v%s\"",
"bump:minor": "npm run build && npm version minor -m \"v%s\"",
"bump:major": "npm run build && npm version major -m \"v%s\"",
"bump": "npm run bump:patch"
},
"author": {
"name": "Ian Sinnott",
"email": "[email protected]",
"url": "iansinnott.com"
},
"keywords": [
"time",
"timezone",
"tz",
"moment",
"moment-timezone",
"date"
],
"engines": {
"node": ">=0.10"
},
"bugs": {
"url": "https://github.com/iansinnott/jstz/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/iansinnott/jstz"
},
"licenses": [
{
"type": "MIT",
"url": "https://bitbucket.org/pellepim/jstimezonedetect/src/default/LICENCE.txt"
}
],
"devDependencies": {
"chai": "^3.2.0",
"del": "^0.1.3",
"gulp": "^3.8.10",
"gulp-concat": "^2.4.2",
"gulp-footer": "^1.0.5",
"gulp-header": "^1.2.2",
"gulp-jshint": "^1.9.0",
"gulp-rename": "^1.2.0",
"gulp-uglify": "^1.0.1",
"gulp-wrap-commonjs": "^0.1.12",
"mocha": "^2.3.0"
},
"typings": "./dist/jstz.d.ts",
"types": "./dist/jstz.d.ts"
}