forked from angular-translate/angular-translate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.85 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
81
82
83
84
85
86
{
"name": "angular-translate",
"version": "2.13.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": "*"
},
"devEngines": {
"node": ">=6.9",
"npm": ">=3"
},
"scripts": {
"prepublish": "bower install",
"check-env": "node node_modules/fbjs-scripts/node/check-dev-engines.js package.json",
"shipit": "npm run-script -q check-env && bower install && bower update && grunt prepare-release",
"test": "npm run-script -q check-env && grunt install-test && grunt test",
"test-headless": "npm run-script -q check-env && grunt test-headless",
"test-scopes": "npm run-script -q check-env && 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": "npm run-script -q check-env && grunt compile",
"build": "npm run-script -q check-env && 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": "[email protected]",
"url": "https://github.com/knalli"
},
{
"name": "Max Prichinenko"
},
{
"name": "Thorsten S"
}
],
"license": "MIT",
"devDependencies": {
"bower": "^1.7.9",
"express": "^4.13.4",
"fbjs-scripts": "^0.7.1",
"grunt": "~1.0.1",
"grunt-bower-install-simple": "^1.0.3",
"grunt-bump": "^0.8.0",
"grunt-cli": "^1.2.0",
"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": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-conventional-changelog": "^6.1.0",
"grunt-express": "^1.4.1",
"grunt-file-append": "0.0.6",
"grunt-karma": "^2.0.0",
"grunt-ng-annotate": "^3.0.0",
"grunt-ngdocs": "~0.2.5",
"grunt-parallel": "^0.5.1",
"grunt-umd": "^2.3.3",
"grunt-version": "^1.0.0",
"jasmine-core": "^2.1.3",
"karma": "^1.3.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "~1.0.0",
"karma-jasmine": "^1.0.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"
}
}