-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.63 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.63 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
50
51
52
53
54
55
56
{
"name": "@atlassian/date-time",
"version": "0.2.5",
"description": "Atlassian Frontend Date Time API ",
"main": "dist/bundle.cjs",
"module": "dist/bundle.mjs",
"types": "dist/index.d.ts",
"exports": {
"require": "./dist/bundle.cjs",
"import": "./dist/bundle.mjs"
},
"scripts": {
"typecheck": "tsc --noEmit",
"lint": "eslint && prettier --check .",
"format": "eslint --fix && prettier --write .",
"test": "LANG=en_US.UTF-8 LC_ALL=en_US.UTF-8 TZ=Asia/Sydney jest",
"test:coverage": "npm run test -- --coverage",
"checks": "npm run typecheck && npm run lint && npm run test:coverage",
"build": "npm run build:types && npm run build:bundle",
"build:types": "tsc --project tsconfig.json",
"build:bundle": "webpack",
"prepublishOnly": "rm -rf dist && npm run checks && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/atlassian/date-time-api.git"
},
"keywords": [
"atlassian",
"date",
"time"
],
"author": "Zac Xu",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/atlassian/date-time-api/issues"
},
"homepage": "https://github.com/atlassian/date-time-api#readme",
"devDependencies": {
"@eslint/js": "^9.39.4",
"@types/jest": "^30.0.0",
"eslint": "^9.39.4",
"globals": "^16.5.0",
"jest": "^30.3.0",
"prettier": "3.8.1",
"ts-jest": "^29.4.9",
"ts-loader": "^9.5.7",
"typescript": "^5.9.3",
"typescript-eslint": "^8.58.0",
"webpack": "^5.105.4",
"webpack-cli": "^7.0.2"
},
"publishConfig": {
"registry": "https://packages.atlassian.com/api/npm/npm-public/"
}
}