-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathpackage.json
40 lines (40 loc) · 822 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.3.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": {
"angular-gettext-tools": "^2.2.0",
"plugin-error": "^1.0.1",
"through2": "^2.0.1",
"vinyl": "^2.2.0"
},
"devDependencies": {
"chai": "^4.2.0",
"eslint": "^6.5.0",
"mocha": "^6.2.1",
"pofile": "^1.1.0"
}
}