-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 787 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 787 Bytes
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
{
"name": "gdpr-cli",
"version": "0.3.4",
"description": "Checks websites for GDPR compliance",
"main": "index.js",
"scripts": {
"test": "ava test/*.js",
"test:verbose": "ava test/*.js --verbose",
"test:watch": "ava test/*.js --verbose --watch"
},
"bin": {
"gdpr": "index.js"
},
"repository": "https://github.com/mirkoschubert/gdpr-check.git",
"author": "Mirko Schubert <[email protected]>",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.1",
"cheerio": "^1.0.0-rc.2",
"cliui": "^4.1.0",
"commander": "^2.15.1",
"css": "^2.2.3",
"fs-extra": "^6.0.1",
"get-ssl-certificate": "^2.1.2",
"got": "^8.3.1",
"moment": "^2.22.1",
"rootpath": "^0.1.2"
},
"devDependencies": {
"ava": "^0.25.0"
}
}