-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
41 lines (41 loc) · 935 Bytes
/
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
{
"name": "node-wp-i18n",
"version": "1.2.7",
"description": "Internationalize WordPress themes and plugins.",
"license": "MIT",
"homepage": "https://github.com/cedaro/node-wp-i18n",
"repository": "cedaro/node-wp-i18n",
"author": {
"name": "Brady Vercher",
"email": "brady@blazersix.com",
"url": "http://www.cedaro.com/"
},
"bin": {
"wpi18n": "./bin/wpi18n"
},
"main": "index.js",
"scripts": {
"lint": "jshint index.js lib/*.js",
"pretest": "rm -rf tmp && cp -R test/fixtures tmp",
"test": "tap test/*.js --cov"
},
"dependencies": {
"bluebird": "^3.4.1",
"gettext-parser": "^3.1.0",
"glob": "^7.0.5",
"lodash": "^4.14.2",
"minimist": "^1.2.5",
"mkdirp": "^1.0.4",
"tmp": "^0.2.1"
},
"keywords": [
"wordpress",
"i18n",
"translation"
],
"devDependencies": {
"async": "^3.2.0",
"jshint": "^2.9.2",
"tap": "^14.11.0"
}
}