forked from gabegorelick/gulp-angular-gettext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 830 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
{
"name": "gulp-angular-gettext",
"version": "2.2.0",
"description": "Gulp plugin for extracting/compiling angular-gettext strings",
"license": "MIT",
"repository": "gabegorelick/gulp-angular-gettext",
"author": {
"name": "Gabe Gorelick"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"lint": "eslint *.js lib/**/*.js test/**/*.js",
"test": "npm run lint && mocha"
},
"files": [
"index.js",
"lib"
],
"keywords": [
"gulpplugin",
"angular",
"gettext",
"extract"
],
"main": "index.js",
"dependencies": {
"through2": "^2.0.1",
"gulp-util": "^3.0.7",
"angular-gettext-tools": "^2.2.0",
"lodash.isstring": "^4.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^2.10.2",
"mocha": "^2.4.5",
"pofile": "^1.0.2"
}
}