-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 1.14 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
{
"name": "babel-plugin-precompile-intl",
"version": "0.5.2",
"description": "Compile translations in ICU message format to invocable functions at build time",
"repository": "https://github.com/cibernox/babel-plugin-precompile-intl",
"author": {
"name": "Miguel Camba",
"email": "miguel.camba@gmail.com"
},
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublish": "npm run test",
"test": "npm run build && NODE_OPTIONS=--experimental-vm-modules jest test"
},
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"module": "dist/index.js",
"type": "module",
"dependencies": {
"@babel/core": "^7.0.0-0",
"@babel/helper-plugin-utils": "^7.17.0",
"@formatjs/icu-messageformat-parser": "^2.1.2"
},
"keywords": [
"babel-plugin",
"intl",
"precompile",
"translations",
"i18n"
],
"peerDependencies": {
"@babel/core": "^7.0.0-0"
},
"devDependencies": {
"@babel/types": "^7.18.4",
"@types/babel__helper-plugin-utils": "^7.10.0",
"jest": "^28.1.0",
"ts-jest": "^28.0.3",
"typescript": "^4.7.2"
},
"volta": {
"node": "16.15.0"
}
}