-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.31 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.31 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
{
"directories": {
"test": "test"
},
"name": "angular-base-class",
"version": "0.0.6",
"description": "An AngularJS service for class creation with prototypical inheritance and mixins.",
"author": "Audrius Jakumavicius",
"license": "MIT",
"main": "angular-base-class.js",
"files": [
"example",
"angular-base-class.js",
"angular-base-class.min.js",
"package.json",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/aj-dev/angular-base-class"
},
"bugs": {
"url": "https://github.com/aj-dev/angular-base-class/issues"
},
"dependencies": {
"angular": "^1.5.7"
},
"devDependencies": {
"angular-mocks": "^1.5.7",
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-karma": "^2.0.0",
"grunt-karma-coveralls": "^2.5.4",
"jasmine-core": "2.4.1",
"karma": "^1.1.1",
"karma-coverage": "^1.1.0",
"karma-jasmine": "^1.0.2",
"karma-phantomjs-launcher": "^1.0.1",
"load-grunt-tasks": "^3.5.0",
"matchdep": "^1.0.1",
"phantomjs-prebuilt": "2.1.7"
},
"scripts": {
"test": "grunt test && grunt coveralls"
}
}