-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.5 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.5 KB
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
{
"name": "angular-centered",
"version": "1.0.1",
"engine": {
"node": "~0.12"
},
"description": "AngularJS directive - vertically and horizontally positioned overlay container",
"main": "angular-centered.js",
"repository": {
"type": "git",
"url": "https://github.com/iameugenejo/angular-centered"
},
"scripts": {
"pretest": "npm install && bower install",
"test": "node_modules/karma/bin/karma start karma.conf.js --no-auto-watch --single-run --reporters 'coverage,dots' && npm run coverage-average",
"test-watch": "node_modules/karma/bin/karma start karma.conf.js --auto-watch",
"coverage-average": "./node_modules/.bin/coverage-average coverage/report-summary/text-summary.txt --limit 95"
},
"keywords": [
"center",
"vertical",
"horizontal",
"directive",
"angular",
"overlay",
"floating"
],
"author": "Eugene Jo <i.am.eugene.jo@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/iameugenejo/angular-centered/issues"
},
"homepage": "https://github.com/iameugenejo/angular-centered",
"dependencies": {
"angular": "~1.4.9"
},
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"devDependencies": {
"coverage-average": "^1.0.3",
"jasmine-core": "^2.3.4",
"karma": "^0.13.9",
"karma-coverage": "^0.5.1",
"karma-jasmine": "^0.3.6",
"karma-notify-reporter": "^0.1.1",
"karma-phantomjs-launcher": "^0.2.1",
"phantomjs": "^1.9.18"
}
}