-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
42 lines (42 loc) · 1.27 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
{
"name": "angular-unit-testing-helpers",
"version": "0.1.1",
"description": "A collection of helper functions for writing AngularJS unit tests.",
"main": "index.js",
"scripts": {
"test:types": "./node_modules/typescript/bin/tsc --noEmit --listFiles",
"test": "./node_modules/karma/bin/karma start",
"test-travis": "./node_modules/karma/bin/karma start --single-run --browsers=Chrome_travis_ci,Firefox,PhantomJS2 && npm run test:types"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dakolech/angular-unit-testing-helpers.git"
},
"keywords": [
"angularJS",
"angular",
"unit",
"testing",
"test",
"helpers"
],
"author": "Daniel Koza",
"license": "MIT",
"bugs": {
"url": "https://github.com/dakolech/angular-unit-testing-helpers/issues"
},
"homepage": "https://github.com/dakolech/angular-unit-testing-helpers#readme",
"devDependencies": {
"angular": "1.6.3",
"angular-mocks": "1.6.3",
"jasmine-core": "^2.4.1",
"karma": "^1.5.0",
"karma-chrome-launcher": "^2.0.0",
"karma-firefox-launcher": "^1.0.0",
"karma-jasmine": "^1.1.0",
"karma-ng-html2js-preprocessor": "^1.0.0",
"karma-phantomjs2-launcher": "^0.5.0",
"typescript": "~2.2.1",
"typings": "^2.0.0"
}
}