-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
81 lines (81 loc) · 2.39 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "WCAG-EM-Report-Tool",
"version": "2.0.0",
"repository": {
"type": "git",
"url": "git://github.com/w3c/wcag-em-report-tool.git"
},
"devDependencies": {
"bower": "^1.8.8",
"eslint": "^6.2.2",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"grunt": "~1.3.0",
"grunt-autoprefixer": "~3.0.4",
"grunt-cli": "~1.3.2",
"grunt-concat-json": "0.0.10",
"grunt-concurrent": "~2.0.4",
"grunt-contrib-clean": "~2.0.0",
"grunt-contrib-compass": "~1.1.1",
"grunt-contrib-concat": "~1.0.1",
"grunt-contrib-connect": "~2.0.0",
"grunt-contrib-copy": "~1.0.0",
"grunt-contrib-cssmin": "~3.0.0",
"grunt-contrib-htmlmin": "~3.1.0",
"grunt-contrib-uglify": "~4.0.1",
"grunt-contrib-watch": "~1.1.0",
"grunt-html2js": "~0.6.0",
"grunt-karma": "^3.0.2",
"grunt-newer": "~1.3.0",
"grunt-ng-annotate": "~3.0.0",
"grunt-replace": "~1.0.1",
"grunt-rev": "~0.1.0",
"grunt-usemin": "~3.1.1",
"grunt-wiredep": "~3.0.1",
"jasmine-core": "^3.4.0",
"karma": "^4.2.0",
"karma-chrome-launcher": "^0.2.0",
"karma-jasmine": "^2.0.1",
"karma-ng-html2js-preprocessor": "^0.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"load-grunt-tasks": "~5.0.0",
"phantomjs": "^2.1.7",
"stylelint": "^10.1.0",
"stylelint-config-standard": "^18.3.0",
"stylelint-scss": "^3.10.0",
"time-grunt": "2.0.0"
},
"engines": {
"node": ">=8.15.0"
},
"scripts": {
"install": "npx bower install && gem install compass",
"build": "npx grunt build",
"start": "npx grunt serve",
"test": "npx grunt test",
"lint": "npm run lint:styles && npm run lint:scripts",
"lint:scripts": "npx eslint ./app/scripts ./test -f table",
"lint:styles": "npx stylelint ./app/styles/*.scss -f verbose"
},
"dependencies": {
"cors": "^2.8.5",
"errorhandler": "^1.5.1",
"exceljs": "^4.0.0",
"express": "^4.17.1",
"file-saver": "^2.0.2",
"grunt-express": "^1.4.1",
"grunt-express-server": "^0.5.4",
"grunt-parallel": "^0.5.1",
"grunt-shell": "^3.0.1",
"ng2-ckeditor": "^1.2.6",
"textangular": "^1.5.16",
"uuid": "^8.1.0",
"xlsx-style": "^0.8.13",
"xmldom": "^0.5.0",
"xpath": "0.0.24",
"xlsx-populate": "1.21.0"
}
}