-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
89 lines (89 loc) · 2.23 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
88
89
{
"name": "ts-date",
"version": "3.1.0",
"description": "Typescript Date library",
"author": {
"name": "Andrey Mostovoy",
"email": "mostovoyav@gmail.com"
},
"main": "index.js",
"module": "esm/index.js",
"typings": "index.d.ts",
"scripts": {
"build": "ts-node scripts/build-static.ts && rollup -c",
"dev": "rollup -c -w",
"prettify": "prettier --write \"**/*.{ts,js,yml,md}\"",
"release": "standard-version",
"release-canary": "standard-version --prerelease canary",
"github-release": "conventional-github-releaser",
"coveralls": "npm run coverage && nyc report --reporter=lcov",
"coverage": "nyc npm test",
"test:browser": "cd browser-test && npm run browser && cd ..",
"test:sauce": "cd browser-test && npm run sauce && cd ..",
"test": "mocha -r ts-node/register {src,locale}/**/*.test.ts"
},
"devDependencies": {
"@rollup/plugin-typescript": "^8.2.0",
"@types/fs-extra": "^11.0.1",
"@types/glob": "^7.1.1",
"@types/mocha": "^10.0.1",
"@types/power-assert": "^1.5.8",
"conventional-github-releaser": "^3.1.2",
"coveralls": "^3.1.1",
"fs-extra": "^11.1.0",
"glob": "^7.1.6",
"husky": "^8.0.3",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"power-assert": "^1.6.1",
"prettier": "^2.8.4",
"rollup": "^2.7.6",
"rollup-plugin-multi-input": "^1.0.3",
"standard-version": "^9.5.0",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^4.9.5",
"validate-commit-msg": "^2.12.2"
},
"husky": {
"hooks": {
"pre-commit": "npm test -- --reporter dot",
"commit-msg": "validate-commit-msg"
}
},
"nyc": {
"include": [
"src/**/*.ts",
"locale/**/*.ts"
],
"exclude": [
"**/*.d.ts",
"**/*.test.ts"
],
"extension": ".ts",
"require": [
"ts-node/register"
],
"temp-directory": "./.cache/.nyc_output",
"reporter": [
"text"
]
},
"keywords": [
"typescript",
"date",
"time",
"valid date",
"parse",
"format"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/standy/ts-date.git"
},
"bugs": {
"url": "https://github.com/standy/ts-date/issues"
}
}