forked from rangle/augury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
127 lines (127 loc) · 4.27 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"name": "augury",
"version": "1.16.0",
"description": "Developer Tools Extension for inspecting Angular 2+ applications.",
"repository": {
"type": "git",
"url": "https://github.com/rangle/augury.git"
},
"keywords": [
"angular",
"angularjs",
"chrome",
"firefox",
"extension"
],
"engines": {
"node": ">= 6.9.0 < 9.0.0",
"npm": ">= 3.0.0"
},
"bugs": {
"url": "https://github.com/rangle/augury/issues"
},
"homepage": "https://github.com/rangle/augury",
"scripts": {
"pack": "./crxmake.sh",
"build": "webpack --colors --display-error-details --display-cached",
"build:chrome": "cross-env BUILD=chrome npm run build",
"build:firefox": "cross-env BUILD=firefox npm run build",
"build:canary": "cross-env BUILD=canary npm run build",
"build:prod": "webpack --optimize-dedupe",
"build:prod:chrome": "cross-env BUILD=chrome npm run build:prod",
"build:prod:firefox": "cross-env BUILD=firefox npm run build:prod",
"build:prod:canary": "cross-env BUILD=canary npm run build:prod",
"build:dev": "cross-env NODE_ENV=development npm run build",
"build:dev:chrome": "cross-env BUILD=chrome npm run build:dev",
"build:dev:firefox": "cross-env BUILD=firefox npm run build:dev",
"build:dev:canary": "cross-env BUILD=canary npm run build:dev",
"watch": "webpack --colors --display-error-details --display-cached --watch",
"watch:chrome": "cross-env BUILD=chrome npm run watch",
"watch:firefox": "cross-env BUILD=firefox npm run watch",
"watch:canary": "cross-env BUILD=canary npm run watch",
"watch:prod:chrome": "npm run watch:chrome",
"watch:prod:firefox": "npm run watch:firefox",
"watch:prod:canary": "npm run watch:canary",
"watch:dev": "cross-env NODE_ENV=development npm run watch",
"watch:dev:chrome": "cross-env BUILD=chrome npm run watch:dev",
"watch:dev:firefox": "cross-env BUILD=firefox npm run watch:dev",
"watch:dev:canary": "cross-env BUILD=canary npm run watch:dev",
"webpack": "webpack",
"clean": "rimraf build",
"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",
"lint": "tslint 'src/**/*.ts'"
},
"dependencies": {
"@angular-redux/store": "7.0.2",
"@angular/common": "5.1.2",
"@angular/compiler": "5.1.2",
"@angular/core": "5.1.2",
"@angular/forms": "5.1.2",
"@angular/http": "5.1.2",
"@angular/platform-browser": "5.1.2",
"@angular/platform-browser-dynamic": "5.1.2",
"@angular/router": "5.1.2",
"@types/redux-logger": "3.0.0",
"basscss": "7.1.1",
"basscss-border-colors": "2.1.0",
"basscss-type-scale": "1.0.5",
"basscss-typography": "3.0.3",
"core-js": "2.2.2",
"cross-env": "3.1.4",
"crypto": "0.0.3",
"d3": "4.5.0",
"expose-loader": "0.7.1",
"immutable": "3.7.6",
"ramda": "0.24.1",
"redux": "3.7.2",
"redux-logger": "3.0.6",
"redux-observable": "0.17.0",
"rxjs": "5.5.5",
"zone.js": "0.8.18"
},
"devDependencies": {
"@types/chrome": "0.0.38",
"@types/clone": "0.1.30",
"@types/d3": "4.4.1",
"@types/d3-hierarchy": "1.0.4",
"@types/d3-selection": "1.0.9",
"@types/d3-shape": "1.0.7",
"@types/node": "7.0.5",
"@types/tape": "4.2.28",
"autoprefixer": "6.3.6",
"basscss-layout": "3.1.0",
"clone": "2.1.0",
"copy-webpack-plugin": "^4.3.1",
"css-loader": "0.26.1",
"d3-hierarchy": "1.1.1",
"d3-selection": "1.0.3",
"d3-shape": "1.0.4",
"es6-promise": "4.0.5",
"es6-shim": "0.35.0",
"file-loader": "0.10.0",
"merge-jsons-webpack-plugin": "^1.0.12",
"msgpack-lite": "0.1.20",
"object-assign": "4.1.1",
"postcss-cssnext": "2.5.2",
"postcss-import": "9.1.0",
"postcss-loader": "1.0.0",
"raven-js": "3.14.2",
"raw-loader": "0.5.1",
"reflect-metadata": "0.1.9",
"rimraf": "2.5.4",
"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": "2.1.0",
"tslint": "5.4.3",
"tslint-loader": "3.5.3",
"typescript": "2.3.4",
"url-loader": "0.5.7",
"webpack": "1.14.0",
"webpack-dev-server": "1.16.2"
},
"license": "MIT"
}