-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.56 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
{
"name": "@caldwell619/ms",
"version": "0.0.3",
"description": "Tiny time formatting utility forked from vercel/ms",
"main": "dist/index.js",
"module": "dist/index.module.js",
"source": "src/index.ts",
"scripts": {
"format": "prettier --write .",
"lint": "eslint ./ --ext .js,.ts",
"benchmark:ms": "ts-node benchmark/index.ts",
"test": "jest",
"type-check": "tsc --noEmit",
"build": "microbundle --compress --target node",
"release": "standard-version",
"publish-release": "git push --follow-tags origin master && yarn publish",
"deploy": "sh scripts/publish.sh",
"predeploy:example": "cd demo && yarn && yarn run build",
"deploy:example": "gh-pages -d demo/dist"
},
"homepage": "https://christopher-caldwell.github.io/ms",
"repository": {
"type": "git",
"url": "[email protected]:christopher-caldwell/ms.git"
},
"bugs": {
"url": "https://github.com/christopher-caldwell/ms/issues"
},
"files": [
"dist"
],
"keywords": [
"time",
"conversion",
"seconds",
"weeks",
"date"
],
"author": "u/christopher-caldwell",
"license": "MIT",
"devDependencies": {
"@types/jest": "^26.0.20",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"colors": "1.4.0",
"eslint": "^7.20.0",
"eslint-plugin-prettier": "^3.3.1",
"gh-pages": "3.2.3",
"jest": "26.6.3",
"microbundle": "^0.13.0",
"prettier": "^2.0.5",
"standard-version": "9.3.2",
"ts-jest": "26.5.6",
"ts-node": "9.1.1",
"typescript": "^4.1.5"
}
}