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
|
{
"name": "SonarQube",
"version": "0.0.1",
"description": "Put your technical debt under control",
"repository": "SonarSource/sonarqube",
"license": "LGPL-3.0",
"devDependencies": {
"babel": "5.8.23",
"babelify": "6.3.0",
"backbone": "1.2.3",
"backbone.marionette": "2.4.3",
"blueimp-md5": "1.1.1",
"browserify": "11.2.0",
"browserify-shim": "3.8.10",
"chai": "3.3.0",
"del": "2.0.2",
"event-stream": "3.3.1",
"glob": "5.0.15",
"gulp": "3.9.0",
"gulp-browserify": "0.5.1",
"gulp-concat": "2.6.0",
"gulp-if": "2.0.0",
"gulp-less": "3.0.3",
"gulp-minify-css": "1.2.1",
"gulp-rename": "1.2.2",
"gulp-sourcemaps": "1.6.0",
"gulp-uglify": "1.4.2",
"gulp-util": "3.0.6",
"handlebars": "2.0.0",
"hbsfy": "2.3.1",
"intern": "3.0.0",
"isparta": "3.0.4",
"jquery": "2.1.4",
"jsdom": "6.5.1",
"mocha": "2.3.3",
"moment": "2.10.6",
"react": "0.13.3",
"sinon": "1.15.4",
"sinon-chai": "2.8.0",
"underscore": "1.8.3",
"vinyl-buffer": "1.0.0",
"vinyl-source-stream": "1.1.0",
"watchify": "3.4.0",
"whatwg-fetch": "0.10.0",
"yargs": "3.27.0"
},
"scripts": {
"build-fast": "gulp --fast",
"build": "gulp",
"test": "./node_modules/.bin/mocha --opts tests/mocha.opts tests",
"coverage": "./node_modules/.bin/babel-node ./node_modules/.bin/isparta cover --dir './target/coverage' --include '**/*.js' --include '**/*.jsx' ./node_modules/.bin/_mocha -- --opts tests/mocha.opts tests"
},
"browserify-shim": {
"jquery": "global:jQuery",
"underscore": "global:_"
},
"browserify": {
"transform": [
"hbsfy",
"babelify",
"browserify-shim"
]
}
}
|