-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
69 lines (69 loc) · 1.96 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "angular-translate-extract",
"description": "Extract all the translation keys for angular-translate project",
"main": "./lib/index.js",
"version": "0.0.0-semantic-release-auto-version",
"scripts": {
"commit": "git cz",
"test": "mocha tests -w --compilers js:babel-register",
"test:single": "babel-node node_modules/.bin/babel-istanbul cover _mocha -- tests -R spec",
"check-coverage": "istanbul check-coverage --statements 99 --branches 92 --functions 100 --lines 99",
"report-coverage": "cat ./coverage/lcov.info | coveralls",
"prebuild": "rm -Rf lib && mkdir lib",
"build": "babel -d lib/ src/",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"engines": {
"node": ">= 4.0.0"
},
"devDependencies": {
"babel-cli": "6.5.1",
"babel-istanbul": "0.6.0",
"babel-preset-es2015": "6.6.0",
"babel-register": "6.5.2",
"chai": "3.5.0",
"commitizen": "2.5.0",
"coveralls": "2.11.8",
"cz-conventional-changelog": "1.1.5",
"istanbul": "0.4.2",
"mocha": "2.4.5",
"nodeunit": "^0.9.1",
"semantic-release": "^4.3.5",
"sinon": "1.17.3"
},
"repository": {
"type": "git",
"url": "https://github.com/Boulangerie/angular-translate-extract.git"
},
"keywords": [
"AngularJS",
"angular-translate",
"javascript",
"js",
"translate",
"i18n"
],
"author": "Benjamin Longearet",
"bugs": {
"url": "https://github.com/Boulangerie/angular-translate-extract/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/Boulangerie/angular-translate-extract/blob/master/LICENSE"
}
],
"readmeFilename": "README.md",
"dependencies": {
"flat": "^1.2.0",
"glob-expand": "0.1.0",
"json-stable-stringify": "^1.0.0",
"lodash": "4.5.1",
"lodash-deep": "1.6.0",
"log": "1.4.0",
"pofile": "^0.2.12"
},
"czConfig": {
"path": "node_modules/cz-conventional-changelog/"
}
}