This repository has been archived by the owner on Feb 26, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 230
/
Copy pathpackage.json
85 lines (85 loc) · 2.59 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
75
76
77
78
79
80
81
82
83
84
85
{
"name": "angular-in-memory-web-api",
"version": "0.10.0",
"description": "An in-memory web api for Angular demos and tests",
"main": "bundles/in-memory-web-api.umd.js",
"module": "index.js",
"scripts": {
"build": "tsc",
"build:watch": "tsc -w",
"build:lib": "gulp build",
"lint": "tslint ./src/*.ts -t verbose -e ./src/*.d.ts",
"start": "concurrently \"npm run build:watch\" \"npm run serve\"",
"pretest": "npm run build",
"test": "concurrently \"npm run build:watch\" \"karma start karma.conf.js\"",
"pretest:once": "npm run build",
"test:once": "karma start karma.conf.js --single-run",
"tsc": "tsc",
"tsc:w": "tsc -w"
},
"repository": {
"type": "git",
"url": "git+https://github.com/angular/in-memory-web-api.git"
},
"keywords": [],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/angular/in-memory-web-api/issues"
},
"homepage": "https://github.com/angular/in-memory-web-api#readme",
"peerDependencies": {
"@angular/common": ">=8.0.0",
"@angular/core": ">=8.0.0",
"rxjs": "^6.0.0"
},
"devDependencies": {
"@angular/animations": "^8.0.0",
"@angular/common": "^8.0.0",
"@angular/compiler": "^8.0.0",
"@angular/compiler-cli": "^8.0.0",
"@angular/core": "^8.0.0",
"@angular/platform-browser": "^8.0.0",
"@angular/platform-browser-dynamic": "^8.0.0",
"@angular/platform-server": "^8.0.0",
"@types/jasmine": "2.8.7",
"@types/jasminewd2": "~2.0.3",
"@types/jasmine-ajax": "^3.1.37",
"@types/node": "^8.10.0",
"canonical-path": "0.0.2",
"concurrently": "^3.0.0",
"core-js": "^2.4.1",
"del": "^2.2.2",
"gulp": "^4.0.2",
"gulp-bump": "^3.1.3",
"gulp-load-plugins": "^2.0.3",
"gulp-task-listing": "^1.1.0",
"http-server": "^0.9.0",
"jasmine-ajax": "^3.3.1",
"jasmine-core": "~2.8.0",
"jasmine-spec-reporter": "~4.2.1",
"karma": "~2.0.0",
"karma-chrome-launcher": "~2.2.0",
"karma-cli": "~1.0.1",
"karma-coverage-istanbul-reporter": "~2.0.0",
"karma-jasmine": "~1.1.1",
"karma-jasmine-html-reporter": "^0.2.2",
"karma-jasmine-ajax": "^0.1.13",
"karma-phantomjs-launcher": "^1.0.4",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^3.0.0",
"lite-server": "^2.3.0",
"lodash": "^4.17.10",
"rimraf": "^2.6.2",
"rollup": "^0.58.2",
"rollup-stream": "^1.24.1",
"rxjs": "^6.2.0",
"systemjs": "0.21.3",
"tslint": "^5.10.0",
"typescript": "3.4.5",
"vinyl-source-stream": "^2.0.0",
"webpack": "2.2.1",
"yargs": "^11.0.0",
"zone.js": "^0.9.1"
}
}