forked from angular-translate/angular-translate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 2.5 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "angular-translate",
"version": "2.12.1",
"description": "A translation module for AngularJS",
"main": "dist/angular-translate.js",
"repository": {
"type": "git",
"url": "http://github.com/angular-translate/angular-translate"
},
"engines": {
"node": ">=4.4"
},
"scripts": {
"prepublish": "bower install",
"shipit": "bower install && bower update && grunt prepare-release",
"test": "grunt install-test && grunt test",
"test-headless": "grunt test-headless",
"test-scopes": "grunt install-test && for f in test_scopes/*; do TEST_SCOPE=\"`basename $f`\" grunt test; done",
"clean-test-scopes": "for f in test_scopes/*; do (cd $f; rm -rf bower_components); done",
"compile": "grunt compile",
"build": "grunt build",
"build-site": "npm run -q build-site-all-languages; npm run -q build-site-plato-report",
"build-site-all-languages": "./build_tools/generate_site.sh",
"build-site-by-language": "./build_tools/generate_site_by_language.sh",
"build-site-plato-report": "rm -rf ./site/plato && plato -d plato -l .jshintrc src/*.js src/**/*.js && mv plato site"
},
"author": {
"name": "Pascal Precht"
},
"contributors": [
{
"name": "Jan Philipp",
"email": "knallisworld@googlemail.com",
"url": "https://github.com/knalli"
},
{
"name": "Max Prichinenko"
},
{
"name": "Thorsten S"
}
],
"license": "MIT",
"devDependencies": {
"bower": "^1.3.12",
"express": "^4.13.4",
"grunt": "~0.4.1",
"grunt-bower-install-simple": "^1.0.3",
"grunt-bump": "^0.7.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-uglify": "^1.0.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-conventional-changelog": "^6.1.0",
"grunt-express": "^1.4.1",
"grunt-file-append": "0.0.6",
"grunt-karma": "^0.12.1",
"grunt-ng-annotate": "^1.0.1",
"grunt-ngdocs": "~0.2.5",
"grunt-parallel": "^0.4.1",
"grunt-umd": "^2.3.3",
"grunt-version": "^1.0.0",
"jasmine-core": "^2.1.3",
"karma": "^0.13.21",
"karma-chrome-launcher": "^0.2.2",
"karma-coverage": "^0.5.4",
"karma-firefox-launcher": "~0.1.3",
"karma-jasmine": "^0.3.2",
"karma-phantomjs-launcher": "^1.0.0",
"load-grunt-tasks": "^3.4.1",
"phantomjs-prebuilt": "^2.1.4",
"plato": "^1.5.0"
},
"dependencies": {
"angular": ">=1.2.26 <=1.6"
}
}