-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
45 lines (45 loc) · 1.24 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
{
"name": "cppinsights-web",
"version": "1.0.0",
"description": "C++ Insights - Web Front-End",
"main": "index.js",
"scripts": {
"test": "nyc mocha",
"report-coverage": "nyc --reporter=lcov npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andreasfertig/cppinsights-web.git"
},
"author": "Andreas Fertig",
"license": "MIT",
"bugs": {
"url": "https://github.com/andreasfertig/cppinsights-web/issues"
},
"homepage": "https://github.com/andreasfertig/cppinsights-web#readme",
"dependencies": {
"grunt": "1.6.1",
"grunt-cli": "^1.4.3",
"js-beautify": "^1.8.8",
"uglify-es": "github:mishoo/UglifyJS2#harmony"
},
"devDependencies": {
"async": "^3.2.5",
"eslint": "^8.56.0",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-cssmin": "^5.0.0",
"grunt-contrib-htmlmin": "^3.1.0",
"grunt-contrib-imagemin": "^4.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-uglify-es": "^3.3.0",
"grunt-eslint": "^24.3.0",
"grunt-jsbeautifier": "^0.2.13",
"grunt-shell": "^4.0.0",
"grunt-string-replace": "^1.3.1",
"grunt-svgmin": "^7.0.0",
"jsdom": "24.0.0",
"jsdom-global": "3.0.2",
"mocha": "^10.3.0",
"nyc": "^15.1.0"
}
}