-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.09 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
{
"name": "angular-samples",
"version": "1.0.0",
"description": "Examples of how to test Angular apps with Alsatian",
"main": "index.js",
"scripts": {
"build": "tsc",
"pretest": "npm run build",
"test": "npm run unit-tests",
"unit-tests": "alsatian \"./**/*.spec.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/alsatian-test/angular-samples.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/alsatian-test/angular-samples/issues"
},
"homepage": "https://github.com/alsatian-test/angular-samples#readme",
"devDependencies": {
"@angular/common": "^2.4.8",
"@angular/compiler": "^2.4.8",
"@angular/core": "^2.4.8",
"@angular/platform-browser": "^2.4.8",
"@angular/platform-browser-dynamic": "^2.4.8",
"@types/core-js": "^0.9.35",
"@types/sinon": "^1.16.35",
"alsatian": "^1.2.1",
"alsatian-angular-test-shim": "^1.0.0-beta.1",
"core-js": "^2.4.1",
"jsdom": "^9.11.0",
"rxjs": "^5.2.0",
"sinon": "^1.17.7",
"typescript": "^2.2.1",
"zone.js": "^0.7.7"
}
}