-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.05 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": "quartzite",
"version": "2.0.1",
"description": "Lightweight relative date/time formatter without external dependencies.",
"author": "Robert Dimitrov <robert_dimitrov@me.com>",
"license": "MIT",
"main": "dist/quartzite.js",
"types": "types/quartzite.d.ts",
"unpkg": "dist/quartzite.js",
"files": [
"dist/*.js",
"types/*.d.ts"
],
"keywords": [
"micro",
"relative",
"date",
"time",
"format",
"human-readable",
"timestamp"
],
"scripts": {
"build": "webpack --progress --mode=production",
"start": "webpack-dev-server --mode=development",
"lint": "eslint src test",
"test": "mocha test/**/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/robbdimitrov/quartzite.git"
},
"devDependencies": {
"@babel/core": "^7.10.1",
"@babel/preset-env": "^7.10.1",
"babel-loader": "^8.1.0",
"eslint": "^7.1.0",
"eslint-loader": "^4.0.2",
"mocha": "^7.2.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
}
}