-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
58 lines (58 loc) · 1.64 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
{
"name": "a2-in-memory-web-api",
"version": "0.1.17",
"description": "An in-memory web api for demos and tests",
"scripts": {
"tsc": "tsc",
"tsc:w": "tsc -w",
"lint": "tslint ./src/in-memory-backend.service.ts -t verbose",
"lite": "lite-server",
"live": "live-server",
"start": "concurrently \"npm run tsc:w\" \"npm run lite\" ",
"test": "karma start karma.conf.js",
"build-and-test": "concurrently \"npm run tsc\" \"npm run test\"",
"http-server": "tsc && http-server",
"typings": "typings"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wardbell/a2-in-memory-web-api.git"
},
"keywords": [],
"author": "Ward R. Bell",
"license": "ISC",
"bugs": {
"url": "https://github.com/wardbell/a2-in-memory-web-api/issues"
},
"homepage": "https://github.com/wardbell/a2-in-memory-web-api#readme",
"dependencies": {
"angular2": "2.0.0-beta.17",
"es6-shim": "^0.35.0",
"reflect-metadata": "0.1.2",
"rxjs": "5.0.0-beta.6",
"zone.js": "0.6.12"
},
"devDependencies": {
"concurrently": "^2.0.0",
"del": "^2.2.0",
"gulp": "^3.9.1",
"gulp-bump": "^2.0.1",
"gulp-load-plugins": "^1.2.2",
"gulp-task-listing": "^1.0.1",
"gulp-util": "^3.0.7",
"http-server": "^0.9.0",
"jasmine-core": "~2.4.1",
"karma": "^0.13.22",
"karma-chrome-launcher": "^0.2.3",
"karma-cli": "^0.1.2",
"karma-jasmine": "^0.3.8",
"lite-server": "^2.2.0",
"live-server": "^1.0.0",
"rimraf": "^2.5.2",
"systemjs": "0.19.26",
"systemjs-builder": "^0.15.15",
"typescript": "^1.8.10",
"typings": "0.8.1",
"yargs": "^4.6.0"
}
}