forked from angular/zone.js
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
{
"name": "zone.js",
"version": "0.5.8",
"description": "Zones for JavaScript",
"main": "lib/zone.js",
"files": [
"lib",
"dist"
],
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "karma start karma.conf.js",
"serve": "python -m SimpleHTTPServer 8000"
},
"repository": {
"type": "git",
"url": "git://github.com/angular/zone.js.git"
},
"author": "Brian Ford",
"license": "Apache 2.0",
"bugs": {
"url": "https://github.com/angular/zone.js/issues"
},
"dependencies": {
"es6-promise": "^3.0.2"
},
"devDependencies": {
"browserify": "^9.0.8",
"gulp": "^3.8.11",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.2.0",
"jasmine-core": "^2.2.0",
"karma": "^0.12.31",
"karma-browserify": "^4.1.2",
"karma-chrome-launcher": "^0.1.7",
"karma-firefox-launcher": "^0.1.4",
"karma-jasmine": "^0.3.5",
"karma-safari-launcher": "^0.1.1",
"karma-sauce-launcher": "^0.2.10",
"nodejs-websocket": "^1.2.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}