This repository was archived by the owner on Apr 10, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.54 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.54 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
{
"author": "Transcend Inc.",
"name": "@transcend-io/internationalization",
"description": "Internationalization configuration for the monorepo",
"version": "3.0.0",
"homepage": "https://github.com/transcend-io/internationalization",
"repository": {
"type": "git",
"url": "https://github.com/transcend-io/internationalization.git"
},
"license": "MIT",
"type": "module",
"main": "build/index.js",
"exports": {
".": {
"import": "./build/index.js",
"types": "./build/index.d.ts"
}
},
"files": [
"build/**/*",
"package.json"
],
"scripts": {
"update:sdks": "yarn set version from sources && yarn sdks base",
"update:deps": "yarn upgrade-interactive && yarn update:sdks",
"build": "yarn tsc --build",
"clean": "yarn tsc --build --clean",
"lint": "yarn eslint src --ext .ts",
"prepublish": "yarn build",
"test": "yarn build && yarn mocha './build/tests/**/*.test.js'"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@typescript-eslint/eslint-plugin": "^5.12.1",
"@typescript-eslint/parser": "^5.12.1",
"@yarnpkg/sdks": "^3.2.0",
"chai": "^4.3.6",
"depcheck": "^1.4.3",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-import-resolver-typescript": "^2.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-jsdoc": "^37.9.4",
"mocha": "^9.2.1",
"prettier": "^3.1.0",
"typescript": "^4.9.5"
},
"packageManager": "yarn@4.12.0"
}