forked from angularjs-in-action/angello
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 838 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 838 Bytes
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
{
"name": "angello",
"version": "0.0.0",
"description": "Task management app written with AngularJS",
"private": true,
"directories": {
"test": "tests"
},
"scripts": {
"test": "karma start --single-run --browsers Chrome client/tests/karma.conf.js"
},
"repository": {
"type": "git",
"url": "git://github.com/angularjs-in-action/angello.git"
},
"devDependencies": {
"karma": "~0.12",
"karma-chrome-launcher": "~0.1",
"karma-cli": "0.0.4",
"karma-jasmine": "^0.2.2",
"karma-ng-html2js-preprocessor": "^0.1.2"
},
"contributors": [
"Brian Ford <btford@umich.edu> (http://briantford.com/)",
"Lukas Ruebbelke <simpul@gmail.com> (http://onehungrymind.com/)",
"Martin Gontovnikas <martin@gon.to> (http://gon.to/)"
],
"license": "MIT",
"readmeFilename": "README.md"
}