-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 822 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 822 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
29
30
31
32
33
34
35
36
37
{
"name": "ng2-mock",
"version": "0.2.2",
"description": "An easy way to mock your Angular elements",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"author": "Sven Roettering",
"repository": {
"type": "git",
"url": "git://github.com/sroettering/ng2-mock.git"
},
"bugs": {
"url": "https://github.com/sroettering/ng2-mock/issues"
},
"license": "MIT",
"keywords": [
"angular",
"angular6",
"mocks",
"mocking"
],
"scripts": {
"prepublishOnly": "tsc",
"test": "jasmine-ts \"test/**/*.spec.ts\""
},
"dependencies": {
"@angular/core": "^6.1.7",
"reflect-metadata": "^0.1.12",
"rxjs": "^6.3.2",
"zone.js": "^0.8.26"
},
"devDependencies": {
"@types/jasmine": "^2.8.8",
"typescript": "2.9.2",
"jasmine-ts": "^0.2.1"
}
}