forked from rangle/augury
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.74 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
{
"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",
"test": "webpack --config webpack.test.config.js && browserify build/test.js | tape-run | tap-spec",
"prepack": "npm test",
"pack": "./crxmake.sh"
},
"dependencies": {
"rxjs": "^5.0.0-beta.0",
"angular2": "^2.0.0-beta.0",
"basscss": "^7.0.4",
"browserify": "^12.0.1",
"crypto": "0.0.3",
"es6-promise": "^3.0.2",
"es6-shim": "^0.33.6",
"immutable": "^3.7.5",
"json-formatter-js": "^0.3.0",
"reflect-metadata": "0.1.2",
"zone.js": "^0.5.10"
},
"devDependencies": {
"object-assign": "4.0.1",
"rimraf": "2.4.3",
"tape": "^4.2.2",
"tap-spec": "^4.1.0",
"tape-run": "^2.1.0",
"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"
}
}