forked from mcastany/dashboard
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.44 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.44 KB
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
{
"name": "hawkeye",
"version": "0.0.1",
"description": "Hawkeye gives you the possibility to manage Auth0 custom OAuth2 connections",
"scripts": {
"start": "watchify -o public/scripts/bundle.js -v -d app/app.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jcenturion/dashboard.git"
},
"keywords": [
"auth0",
"connections",
"oauth2"
],
"author": "centurion.javier@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/jcenturion/dashboard/issues"
},
"homepage": "https://github.com/jcenturion/dashboard#readme",
"dependencies": {
"classnames": "~2.1.3",
"codemirror": "^5.8.0",
"flux": "~2.0.1",
"jquery": "~2.1.4",
"js-beautify": "^1.5.10",
"keymirror": "~0.1.0",
"object-assign": "~1.0.0",
"react": "~0.13.0",
"react-codemirror": "~0.1.7"
},
"devDependencies": {
"browserify": "~6.2.0",
"chai": "^3.4.1",
"envify": "~3.0.0",
"gulp": "~3.9.0",
"gulp-connect": "~2.2.0",
"gulp-exec": "~2.1.2",
"gulp-jshint": "~1.12.0",
"gulp-jsxcs": "~0.1.9",
"jest-cli": "~0.4.3",
"jshint-jsx": "~0.4.1",
"jshint-stylish": "~2.0.1",
"mocha": "^2.3.3",
"mock-require": "^1.2.0",
"reactify": "~0.15.2",
"uglify-js": "~2.4.15",
"watchify": "~2.1.1"
},
"browserify": {
"transform": [
"reactify",
"envify"
]
},
"jest": {
"rootDir": "./app"
}
}