forked from Real-Skill/angular-exercises
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 765 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 765 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
{
"name": "angular-exercises",
"description": "Angular training",
"version": "0.0.0",
"dependencies": {},
"devDependencies": {
"grunt": "~0.4.2",
"grunt-contrib-jshint": "~0.8.0",
"karma-phantomjs-launcher": "1.0.2",
"karma": "~0.12.16",
"karma-coverage": "~0.2.4",
"karma-jasmine": "~0.1.5",
"karma-spec-reporter": "0.0.13",
"grunt-contrib-watch": "^0.6.1",
"grunt-contrib-connect": "^0.7.1"
},
"engines": {
"node": ">=0.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/aniaw/angular-exercises.git"
},
"scripts": {
"start": "node_modules/karma/bin/karma start test/karma.conf.js",
"test": "node_modules/karma/bin/karma start test/karma.conf.js --singleRun true"
}
}