forked from rangle/augury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.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
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
86
87
88
89
90
{
"name": "augury",
"version": "1.2.7",
"description": "Chrome Developer Tools Extension for inspecting Angular 2.0 applications",
"repository": {
"type": "git",
"url": "https://github.com/rangle/augury.git"
},
"keywords": [
"angular",
"angularjs",
"chrome",
"extension"
],
"engines": {
"node": ">= 4.2.3 < 6",
"npm": ">= 3.5.3"
},
"bugs": {
"url": "https://github.com/rangle/augury/issues"
},
"homepage": "https://github.com/rangle/augury",
"scripts": {
"prod-build": "webpack --optimize-dedupe",
"build": "webpack --colors --display-error-details --display-cached",
"dev": "webpack --colors --display-error-details --display-cached --watch",
"dev-build": "cross-env NODE_ENV=development npm run build",
"webpack": "webpack",
"clean": "rimraf node_modules typings",
"postinstall": "rimraf typings && typings install",
"start": "rimraf build && cross-env NODE_ENV=development webpack --watch",
"test": "npm run lint && webpack --config webpack.test.config.js && cat build/test.js | tape-run | tap-spec",
"prepack": "npm run build",
"pack": "./crxmake.sh",
"lint": "tslint 'src/**/*.ts'"
},
"dependencies": {
"@angular/common": "2.0.0",
"@angular/compiler": "2.0.0",
"@angular/core": "2.0.0",
"@angular/forms": "2.0.0",
"@angular/http": "2.0.0",
"@angular/platform-browser": "2.0.0",
"@angular/platform-browser-dynamic": "2.0.0",
"basscss": "^7.0.4",
"basscss-border-colors": "^2.1.0",
"basscss-type-scale": "^1.0.5",
"basscss-typography": "^3.0.3",
"core-js": "^2.2.2",
"cross-env": "^2.0.0",
"crypto": "0.0.3",
"d3": "^3.5.16",
"expose-loader": "^0.7.1",
"file-loader": "^0.8.5",
"immutable": "^3.7.6",
"rxjs": "5.0.0-beta.12",
"zone.js": "^0.6.17"
},
"devDependencies": {
"autoprefixer": "^6.3.6",
"basscss-layout": "^3.1.0",
"clone": "^1.0.2",
"css-loader": "^0.25.0",
"es6-promise": "^3.1.2",
"es6-shim": "^0.35.0",
"file-loader": "^0.8.5",
"msgpack-lite": "^0.1.20",
"object-assign": "4.0.1",
"postcss-cssnext": "^2.5.2",
"postcss-import": "^8.1.0",
"postcss-loader": "^1.0.0",
"raw-loader": "^0.5.1",
"reflect-metadata": "0.1.3",
"rimraf": "2.5.2",
"style-loader": "^0.13.1",
"tap-spec": "^4.1.1",
"tape": "^4.2.2",
"tape-run": "^2.1.3",
"to-string-loader": "^1.1.4",
"ts-loader": "^1.3.2",
"tslint": "^3.9.0",
"tslint-loader": "^2.1.4",
"typescript": "^1.8.9",
"typings": "^1.3.2",
"url-loader": "^0.5.7",
"webpack": "1.14.0",
"webpack-dev-server": "1.14.1"
},
"license": "MIT"
}