-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.2 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
{
"name": "ng-easy-inject",
"version": "0.3.1",
"description": "Easily inject angular dependencies in mocha and jasmine tests",
"main": "index.js",
"repository": "nicktomlin/ng-easy-inject",
"scripts": {
"test": "npm run lint && KARMA_FRAMEWORK=mocha karma start karma.conf.js && KARMA_FRAMEWORK=jasmine karma start karma.conf.js",
"test:watch": "karma start karma.conf.js --auto-watch --single-run=false",
"lint": "eslint .",
"build": "browserify index.js --standalone easyInject -o dist/ng-easy-inject.js"
},
"author": "Nick Tomlin <nick.tomlin@gmail.com>",
"license": "ISC",
"devDependencies": {
"angular": "^1.3.16",
"angular-mocks": "^1.3.16",
"browserify": "^10.2.4",
"eslint": "^0.23.0",
"jasmine-core": "^2.3.4",
"karma": "^0.12.36",
"karma-browserify": "^4.2.1",
"karma-jasmine": "^0.3.5",
"karma-mocha": "^0.1.10",
"karma-phantomjs-launcher": "^0.2.0",
"karma-phantomjs-shim": "^1.0.0",
"lodash.merge": "^3.3.1",
"mocha": "^2.2.5",
"phantomjs": "^1.9.17",
"sinon": "^1.15.3"
},
"keywords": [
"angular",
"ng",
"easy-inject",
"angular-mocks"
],
"dependencies": {
"lodash.isarray": "^3.0.4"
}
}