-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.23 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.23 KB
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
{
"name": "privacyrun.cookie-consent",
"version": "0.1.0",
"description": "Easy to Install Cookie Banner.",
"main": "cookieconsent.js",
"files": [
"cookieconsent.js"
],
"scripts": {
"start": "webpack --watch",
"build": "webpack",
"test": "karma start",
"test:single": "karma start --single-run --browsers=ChromeHeadless",
"e2e": "nightwatch --env chrome,firefox",
"e2e:chrome": "nightwatch --env chrome",
"e2e:firefox": "nightwatch --env firefox",
"lint": "tslint --project tsconfig.json"
},
"author": "PrivacyRUN",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/PrivacyRUN/cookie-consent.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/jasmine": "^3.5.14",
"chromedriver": "^85.0.0",
"geckodriver": "^1.20.0",
"jasmine-core": "^3.6.0",
"karma": "^5.1.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^4.0.1",
"karma-spec-reporter": "0.0.32",
"karma-typescript": "^5.1.0",
"nightwatch": "^1.4.1",
"selenium-server": "^3.141.59",
"ts-loader": "^6.0.4",
"ts-node": "^9.0.0",
"tslint": "~5.15.0",
"typescript": "^3.5.3",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"coveralls": "^3.1.0"
}
}