-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
74 lines (74 loc) · 2.12 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
{
"name": "angular-apimock",
"version": "0.3.3",
"description": "Automatically route your API calls to static JSON files, for hiccup free front–end development.",
"author": "John-Philip Johansson <[email protected]> (http://johansson.jp/)",
"homepage": "http://johansson.jp/angular-apimock/",
"bugs": "https://github.com/seriema/angular-apimock/issues",
"repository": {
"type": "git",
"url": "git://github.com/seriema/angular-apimock.git"
},
"keywords": [
"angular",
"angularjs",
"mock",
"mocking",
"apimock"
],
"files": [
"dist/",
"CHANGELOG.md",
"LICENSE",
"README.md",
"package.json"
],
"main": "dist/angular-apimock.js",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"grunt": "^1.0.1",
"grunt-bump": "^0.8.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-connect": "^1.0.2",
"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-conventional-github-releaser": "^1.0.0",
"grunt-coveralls": "^1.0.0",
"grunt-git": "^1.0.0",
"grunt-jscs": "^3.0.1",
"grunt-karma": "^2.0.0",
"grunt-newer": "^1.1.0",
"grunt-ng-annotate": "^2.0.2",
"grunt-npm": "0.0.2",
"grunt-nsp-package": "0.0.5",
"grunt-nuget": "^0.1.3",
"jasmine": "^2.3.2",
"jasmine-core": "^2.3.4",
"jshint-stylish": "^2.0.1",
"karma": "^1.2.0",
"karma-chrome-launcher": "^2.0.0",
"karma-coverage": "^1.1.1",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.0.2",
"karma-ng-scenario": "^1.0.0",
"karma-phantomjs-launcher": "^1.0.0",
"karma-sauce-launcher": "^1.0.0",
"karma-script-launcher": "^1.0.0",
"load-grunt-tasks": "^3.1.0",
"phantomjs-prebuilt": "^2.1.4",
"time-grunt": "^1.0.0"
},
"engines": {
"node": ">=0.12.0"
},
"scripts": {
"test": "grunt test",
"debug": "karma start karma.conf.js --browsers=Chrome --debug --autoWatch=true",
"saucelabs": "grunt karma:sauce",
"coveralls": "grunt coveralls"
}
}