-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.48 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
{
"name": "i18n-shaking",
"version": "1.2.0-beta.1",
"description": "filter i18n keys",
"keywords": [
"i18n",
"shaking",
"filter",
"translation"
],
"main": "./lib/index.js",
"bin": {
"i18n-shaking": "./bin.js"
},
"type": "commonjs",
"scripts": {
"prepare": "npm run test && npm run build",
"build": "cross-env NODE_ENV=production && rollup --config rollup.config.ts",
"test": "cross-env NODE_ENV=dev && uvu -r tsm tests test.ts"
},
"husky": {
"hooks": {
"pre-commit": "npm run test"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"repository": {
"type": "git",
"url": "[email protected]:liqi.shi/i18n-shaking.git"
},
"author": "liqi.shi",
"license": "ISC",
"devDependencies": {
"@rollup/plugin-replace": "^4.0.0",
"@types/node": "^16.11.10",
"@typescript-eslint/eslint-plugin": "^5.10.1",
"@typescript-eslint/parser": "^5.10.1",
"cross-env": "^7.0.3",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"prettier": "^2.5.1",
"rollup": "^2.70.1",
"rollup-plugin-cleaner": "^1.0.0",
"rollup-plugin-typescript2": "^0.31.2",
"tslib": "^2.3.1",
"tsm": "^2.2.1",
"tsup": "^5.9.1",
"typescript": "^4.5.3",
"uvu": "^0.5.2"
},
"dependencies": {
"art-template": "^4.13.2",
"chalk": "4.1.2",
"sade": "^1.7.4"
},
"files": [
"lib",
"static"
]
}