-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "makemessages",
"version": "0.4.1",
"description": "Extract and compile messages to localize a web app",
"main": "index.js",
"scripts": {
"test": "./bin/makemessages -c './test/samples/makemessages.json'",
"test2": "./bin/compilemessages -c './test/samples/compilemessages.json'",
"build": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hiroshifariassaito/makemessages.git"
},
"keywords": [
"i18n",
"locale"
],
"author": "Hiroshi Farias Saito",
"license": "MIT",
"bugs": {
"url": "https://github.com/hiroshifariassaito/makemessages/issues"
},
"homepage": "https://github.com/hiroshifariassaito/makemessages#readme",
"bin": {
"makemessages": "bin/makemessages",
"compilemessages": "bin/compilemessages"
},
"devDependencies": {
"typescript": "^3.0.1"
},
"dependencies": {
"@types/es6-shim": "^0.31.37",
"@types/glob": "^5.0.35",
"@types/node": "^10.5.8",
"cli": "^1.0.1",
"glob": "^7.1.2"
}
}