-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
59 lines (59 loc) · 2.07 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
{
"name": "i18never",
"version": "1.0.0",
"description": "Deal with the internationalization (i18n) automatically.",
"main": "index.js",
"private": true,
"scripts": {
"test": "jest",
"snapshots": "jest --updateSnapshot",
"codegen": "graphql-codegen --config codegen.yml",
"build": "run-p build:**",
"rollup": "lerna exec -- node ../../scripts/build.js",
"build:es": "npm run rollup -- --format=es --ext=esm.js",
"build:cjs": "npm run rollup",
"_publish": "npm run build && lerna exec -- npm publish",
"release": "npm run release-patch",
"release-patch": "lerna version patch --force-publish && npm run _publish",
"release-minor": "lerna version minor --force-publish && npm run _publish",
"release-major": "lerna version major --force-publish && npm run _publish",
"prelease": "lerna version prerelease --preid beta --force-publish && npm run _publish -- --tag=beta",
"prelease-patch": "lerna version prepatch --preid beta --force-publish && npm run _publish -- --tag=beta",
"prelease-minor": "lerna version preminor --preid beta --force-publish && npm run _publish -- --tag=beta",
"prelease-major": "lerna version premajor --preid beta --force-publish && npm run _publish -- --tag=beta"
},
"workspaces": [
"packages/*"
],
"keywords": [
"i18n"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ksc-fe/i18never.git"
},
"author": "Javey",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-replace": "^5.0.2",
"@types/jest": "^28.1.7",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "^8.22.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"lerna": "^6.0.1",
"minimist": "^1.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.7.1",
"rollup-plugin-typescript2": "^0.35.0",
"ts-jest": "^28.0.8",
"ts-node": "^10.7.0",
"typescript": "^4.6.3"
}
}