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
|
{
"name": "SonarQube",
"version": "0.0.1",
"devDependencies": {
"karma": "~0.10.8",
"karma-jasmine": "*",
"karma-phantomjs-launcher": "*",
"karma-coverage": "*",
"karma-junit-reporter": "*",
"grunt": "~0.4.2",
"grunt-cli": "~0.1.13",
"grunt-contrib-less": "~0.10.0",
"grunt-contrib-coffee": "~0.10.1",
"grunt-contrib-handlebars": "^0.7.0",
"grunt-contrib-requirejs": "^0.4.3",
"grunt-contrib-watch": "~0.5.3",
"grunt-contrib-uglify": "^0.4.0"
},
"engines": {
"node": "~0.8 || ~0.10"
},
"scripts": {
"test": "./node_modules/.bin/karma start --single-run"
},
"assets": "src/main/webapp/"
}
|