-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.03 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
{
"name": "@offen/l10nify",
"version": "0.4.0",
"description": "Localization workflow for Browserify",
"main": "index.js",
"scripts": {
"pretest": "standard",
"test": "tape test/test.js",
"preversion": "npm test",
"version": "changes --commits",
"postversion": "git push --follow-tags && npm publish --access public"
},
"bin": {
"extract-strings": "bin/cmd.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/offen/l10nify.git"
},
"keywords": [
"browserify",
"l10",
"localization"
],
"author": "Frederik Ring <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/offen/l10nify/issues"
},
"homepage": "https://github.com/offen/l10nify#readme",
"devDependencies": {
"@studio/changes": "^2.0.1",
"browserify": "^16.5.1",
"standard": "^14.3.4",
"tape": "^5.0.1",
"vm": "^0.1.0"
},
"dependencies": {
"arg": "^4.1.3",
"jscodeshift": "^0.13.1",
"pofile": "^1.1.0",
"through2": "^4.0.2"
}
}