forked from rangle/augury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 4.48 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
128
129
130
131
132
133
134
{
"name": "augury",
"version": "1.23.0",
"description": "Developer Tools Extension for inspecting Angular 2+ applications",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/rangle/augury.git"
},
"keywords": [
"angular",
"angularjs",
"chrome",
"firefox",
"extension"
],
"engines": {
"node": ">= 10.0.0 < 11.0.0",
"npm": ">= 6.0.0"
},
"bugs": {
"url": "https://github.com/rangle/augury/issues"
},
"homepage": "https://github.com/rangle/augury",
"scripts": {
"pack": "./crxmake.sh",
"build": "cross-env NODE_ENV=development webpack",
"build:test": "webpack --config webpack.test.config.js",
"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": "cross-env NODE_ENV=production webpack",
"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": "cross-env NODE_ENV=development webpack --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 && npm run build:test && 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",
"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",
"crypto": "0.0.3",
"d3": "4.5.0",
"flatted": "^2.0.0",
"immutable": "3.7.6",
"ramda": "0.25.0",
"redux": "3.7.2",
"redux-logger": "3.0.6",
"redux-observable": "0.17.0",
"rxjs": "5.5.5",
"zone.js": "0.8.18"
},
"devDependencies": {
"@angular/compiler-cli": "5.1.2",
"@ngtools/webpack": "1.10.2",
"@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/ramda": "0.25.21",
"@types/redux-logger": "3.0.0",
"@types/tape": "4.2.28",
"autoprefixer": "6.3.6",
"basscss-layout": "3.1.0",
"clean-webpack-plugin": "^0.1.19",
"clone": "2.1.0",
"copy-webpack-plugin": "4.3.1",
"cross-env": "3.1.4",
"css-loader": "0.28.11",
"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": "1.1.11",
"json5": "1.0.1",
"merge-jsons-webpack-plugin": "1.0.14",
"msgpack-lite": "0.1.20",
"postcss-cssnext": "2.5.2",
"postcss-import": "9.1.0",
"postcss-loader": "2.1.3",
"raven-js": "3.14.2",
"raw-loader": "0.5.1",
"reflect-metadata": "0.1.9",
"rimraf": "2.5.4",
"style-loader": "0.20.3",
"tap-spec": "4.1.1",
"tape": "4.9.0",
"tape-run": "4.0.0",
"to-string-loader": "1.1.5",
"ts-loader": "4.2.0",
"tslint": "5.4.3",
"tslint-loader": "3.6.0",
"typescript": "2.4.2",
"url-loader": "1.0.1",
"webpack": "4.5.0",
"webpack-bundle-analyzer": "2.11.1",
"webpack-cli": "2.0.14",
"webpack-dev-server": "3.2.1"
}
}