-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.3 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
{
"name": "mudate",
"version": "1.1.3",
"description": "µDate is a superset of Date that helps you handle timezones",
"main": "_dist/index.js",
"types": "_dist/index.d.js",
"scripts": {
"start": "webpack-dev-server --mode development --progress --color --open",
"build": "webpack --mode production && tsc",
"publish:gh-pages": "git checkout master; npm run build; git subtree split --prefix _dist -b gh-pages; git push -f origin gh-pages:gh-pages; git branch -D gh-pages",
"publish:npmjs": "npm publish"
},
"bundlesize": [
{
"path": "_dist/µDate.js",
"maxSize": "500 B"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/long-lazuli/mudate.git"
},
"keywords": [
"Date",
"TimeZone"
],
"author": "long-lazuli <[email protected]> (www.didask.com)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/long-lazuli/mudate/issues"
},
"homepage": "https://github.com/long-lazuli/mudate#readme",
"devDependencies": {
"bundlesize": "^0.18.0",
"ts-loader": "^6.0.4",
"tslint": "^5.18.0",
"tslint-consistent-codestyle": "^1.15.1",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "^3.5.3",
"webpack": "^4.37.0",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2"
}
}