-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
43 lines (43 loc) · 1.1 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
{
"name": "angular-mockingbird",
"author": "Maciej Gurban",
"version": "0.1.2",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/maciej-gurban/angular-mockingbird"
},
"bugs": {
"url": "https://github.com/maciej-gurban/angular-mockingbird/issues"
},
"description": "Simplified dependency injection and service mocking.",
"keywords": [
"angular",
"jasmine",
"testing",
"mocking",
"mock",
"injection",
"inject"
],
"scripts": {
"test": "karma start ./karma.conf.js",
"build": "babel ./src/mockingbird.js --out-file ./dist/mockingbird.js --debug",
"prepublish": "npm run build"
},
"main": "dist/mockingbird.js",
"devDependencies": {
"angular": "1.5.5",
"angular-mocks": "1.5.5",
"babel-cli": "6.10.1",
"babel-plugin-transform-object-assign": "6.8.0",
"babel-preset-es2015": "6.9.0",
"babelify": "7.3.0",
"jasmine-core": "2.2.0",
"karma": "0.12.31",
"karma-babel-preprocessor": "6.0.1",
"karma-chrome-launcher": "0.1.7",
"karma-cli": "1.0.0",
"karma-jasmine": "0.3.5"
}
}