-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.65 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.65 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
57
58
59
60
61
{
"name": "esp-i18n",
"version": "1.4.0",
"main": "src/main.js",
"description": "Extract locale files and rewrite source code for i18n",
"scripts": {
"start": "babel-node src/main.js",
"build": "npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir generators --extensions \".js,.ts,.tsx\"",
"prepublish": "npm run build",
"i18n": "node test/locale-script/intl.js",
"test": "rm -rf dist && jest --coverage",
"test:only": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Derek-Hu/esp-i18n.git"
},
"keywords": [
"i18n",
"l10n",
"internationalization",
"react",
"angular",
"typescript",
"ts",
"js",
"javascript",
"locale",
"template"
],
"author": "hubenlv",
"license": "MIT",
"homepage": "https://github.com/Derek-Hu/esp-i18n#readme",
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/node": "^7.7.4",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-numeric-separator": "^7.2.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/plugin-transform-modules-commonjs": "^7.7.4",
"@babel/preset-env": "^7.4.1",
"@babel/preset-typescript": "^7.3.3",
"eslint": "^5.14.1",
"eslint-plugin-node": "^8.0.0",
"husky": "^1.3.1",
"jest": "^25.5.4",
"jest-puppeteer": "^4.4.0",
"lint-staged": "^8.1.4",
"prettier": "^1.16.4"
},
"dependencies": {
"@babel/parser": "^7.7.5",
"@babel/traverse": "^7.7.4",
"chalk": "^4.1.0",
"progress": "^2.0.3",
"puppeteer": "^2.0.0"
}
}