This repository has been archived by the owner on Feb 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·94 lines (94 loc) · 3.32 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
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "nice.tophat",
"version": "0.1.4",
"description": "Distributable, branded tophat component for NICE Services and Web Applications",
"private": true,
"scripts": {
"start": "grunt parallel --color",
"test": "npm run lint && npm run test:unit",
"test:unit": "grunt mochaTest:unit --color",
"test:unit:coverage": "nyc --reporter=html --reporter=text npm run test:unit",
"test:unit:teamcity": "grunt mochaTest:teamcity --color",
"test:unit:teamcity:coverage": "nyc --reporter=teamcity --reporter=html npm run test:unit:teamcity",
"test:functional": "node ./node_modules/webdriverio/bin/wdio --spec functional",
"test:functional:keyboardNav": "node ./node_modules/webdriverio/bin/wdio --spec ./test/specs/functional/keyboardNav.js",
"test:visual": "./node_modules/webdriverio/bin/wdio --spec visual",
"test:browserstack": "node ./node_modules/webdriverio/bin/wdio wdio.browserstack.conf.js",
"lint": "grunt eslint:default --color",
"lint:teamcity": "grunt eslint:teamcity --color",
"build": "grunt build --color"
},
"repository": {
"type": "git",
"url": "https://github.com/nice-digital/NICE.Tophat.git"
},
"author": "NICE Digital Services (https://github.com/nice-digital/NICE.TopHat/graphs/contributors)",
"contributors": [
"NICE Digital Services (https://www.nice.org.uk/)",
"Ian Routledge (http://ediblecode.com)"
],
"license": "MIT",
"bugs": {
"url": "http://imt-mingle.nice.org.uk/projects/tophat/overview"
},
"nyc": {
"exclude": [
"lib/vendor/**/*.js"
],
"include": [
"lib/**/*.js"
]
},
"homepage": "https://github.com/nice-digital/NICE.TopHat#readme",
"devDependencies": {
"@nice-digital/eslint-config": "^1.0.2",
"babel-plugin-syntax-async-functions": "^6.8.0",
"babel-plugin-transform-regenerator": "^6.9.0",
"babel-plugin-transform-runtime": "^6.9.0",
"babel-preset-es2015": "^6.9.0",
"babel-register": "^6.9.0",
"babel-runtime": "^6.9.0",
"browserify": "14.4.0",
"chai": "^4.1.2",
"cheerio": "^1.0.0-rc.2",
"cssify": "^1.0.3",
"eslint-teamcity": "^1.4.0",
"glob": "^7.1.1",
"grunt": "^1.0.1",
"grunt-blanket": "0.0.10",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^1.2.0",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-htmlmin": "^2.2.0",
"grunt-contrib-less": "^1.4.0",
"grunt-contrib-uglify": "^2.0.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-eslint": "^20.1.0",
"grunt-mocha-test": "^0.13.2",
"grunt-parallel": "^0.5.1",
"grunt-postcss": "^0.9.0",
"js-cookie": "^2.1.3",
"jsdom": "^11.5.1",
"load-grunt-config": "^0.19.2",
"load-grunt-tasks": "^3.5.2",
"minifyify": "^7.3.4",
"mocha": "^3.5.0",
"mocha-teamcity-reporter": "^1.1.1",
"node-lessify": "^0.1.4",
"nyc": "^11.3.0",
"partialify": "^3.1.6",
"postcss-em-media-query": "^2.0.0",
"postcss-pxtorem": "^4.0.1",
"sinon": "^3.1.0",
"wdio-browserstack-service": "^0.1.12",
"wdio-mocha-framework": "^0.6.2",
"wdio-screenshot": "^0.6.0",
"wdio-selenium-standalone-service": "0.0.10",
"wdio-spec-reporter": "^0.1.4",
"wdio-teamcity-reporter": "^1.1.1",
"wdio-visual-regression-service": "^0.9.0",
"webdriverio": "^4.12.0"
}
}