-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
{
"name": "remote-date",
"version": "0.1.1",
"type": "module",
"files": [
"src",
"!src/**/*.test.*",
"*.d.ts",
"README.md"
],
"module": "src/index.js",
"main": "src/index.js",
"scripts": {
"format": "prettier --check --write \"src/**/*.js\"",
"lint": "prettier --check \"src/**/*.js\" && eslint",
"type-check": "tsc",
"test": "NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" jest",
"docs": "jsdoc -c jsdoc.json",
"changeset:add": "changeset add",
"changeset:version": "changeset version",
"changeset:publish": "changeset publish"
},
"author": "Dzmitry Bayarchyk",
"repository": {
"type": "git",
"url": "git+https://github.com/dbayarchyk/remote-date.git"
},
"bugs": {
"url": "https://github.com/dbayarchyk/remote-date/issues"
},
"homepage": "https://dbayarchyk.github.io/remote-date",
"license": "MIT",
"devDependencies": {
"@changesets/cli": "^2.27.7",
"@eslint/js": "^8.56.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.12",
"clean-jsdoc-theme": "^4.3.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^28.8.0",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jsdoc": "^4.0.3",
"jsdoc-to-markdown": "^8.0.3",
"prettier": "^2.8.4",
"typescript": "^5.5.4"
}
}