-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
59 lines (59 loc) · 1.71 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
{
"name": "ng2-stream-pipe",
"version": "0.0.3",
"description": "NG2 Stream pipe",
"author": "Nick Schipper",
"main": "stream.js",
"repository": {
"type": "git",
"url": "https://github.com/schippie/NG2-Stream-Pipe.git"
},
"homepage": "https://github.com/schippie/NG2-Stream-Pipe",
"bugs": "https://github.com/schippie/NG2-Stream-Pipe/issues",
"license": "MIT",
"baseUrl": "http://localhost:8080",
"scripts": {
"install-tools": "npm run typings install && node ./node_modules/protractor/bin/webdriver-manager update",
"test": "npm run unit-test",
"unit-test": "karma start",
"e2e-test": "protractor protractor.conf.js",
"build": "webpack -p --progress --config webpack.build.config.js",
"publish-build": "tsc",
"typings": "typings"
},
"devDependencies": {
"css-loader": "^0.23.1",
"style-loader": "^0.13.0",
"sass-loader": "^3.1.2",
"ts-loader": "^0.8.1",
"raw-loader": "^0.5.1",
"webpack": "^1.12.13",
"karma-webpack": "^1.7.0",
"jasmine": "^2.4.1",
"jasmine-core": "^2.4.1",
"karma-jasmine": "^0.3.7",
"karma": "^0.13.21",
"karma-coverage": "^0.5.3",
"karma-redirect-preprocessor": "^0.1.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-chrome-launcher": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"phantomjs-prebuilt": "^2.1.4",
"protractor": "^3.1.1",
"typings": "^0.6.8",
"typescript": "^1.8.2",
"node-sass": "^3.4.2"
},
"dependencies": {
"angular2": "2.0.0-beta.7",
"es6-promise": "^3.1.2",
"es6-shim": "^0.34.4",
"reflect-metadata": "0.1.3",
"rxjs": "5.0.0-beta.2",
"zone.js": "0.5.15"
},
"engines": {
"node": ">= 4.2.1 <= 5",
"npm": ">= 3.7.0"
}
}