forked from rangle/augury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.46 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
{
"name": "batarangle",
"version": "0.0.2",
"description": "Chrome Developer Tools Extension for inspecting Angular 2.0 applications",
"repository": {
"type": "git",
"url": "https://github.com/rangle/batarangle.git"
},
"keywords": [
"angular",
"angularjs",
"chrome",
"extension"
],
"bugs": {
"url": "https://github.com/rangle/batarangle/issues"
},
"homepage": "https://github.com/rangle/batarangle",
"scripts": {
"build": "npm run webpack --colors --display-error-details --display-cached",
"webpack": "webpack",
"clean": "rimraf node_modules typings",
"remove-tsd-loader-typings": "rimraf node_modules/typescript-simple-loader/typescript-simple-loader.d.ts",
"tsd-update": "npm run remove-tsd-loader-typings && tsd reinstall --overwrite",
"postinstall": "npm run tsd-update && tsd install && tsd link",
"start": "rimraf build && webpack --watch"
},
"dependencies": {
"@reactivex/rxjs": "5.0.0-alpha.6",
"angular2": "2.0.0-alpha.45",
"basscss": "^7.0.4",
"crypto": "0.0.3",
"es6-shim": "^0.33.6",
"immutable": "^3.7.5",
"json-formatter-js": "^0.2.0",
"reflect-metadata": "0.1.1",
"zone.js": "^0.5.8"
},
"devDependencies": {
"object-assign": "4.0.1",
"rimraf": "2.4.3",
"ts-loader": "0.5.6",
"tsd": "^0.6.5",
"tslint-loader": "^1.0.2",
"typescript": "1.6.2",
"url-loader": "^0.5.6",
"webpack": "1.12.2",
"webpack-dev-server": "1.12.0"
}
}