-
-
Notifications
You must be signed in to change notification settings - Fork 151
/
Copy pathpackage.json
50 lines (50 loc) · 1.8 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
{
"name": "nothing-private",
"version": "1.0.0",
"description": "This project is a proof of concept that any website can identify and track you, even if you are using private browsing or incognito mode in your web browser",
"main": "main.js",
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"cypress:open": "cypress open",
"cy:verify": "cypress verify",
"start": "vite --port 8080",
"build": "vite build",
"preview": "vite preview",
"cy:run": "cypress run --record",
"cy:run:local": "cypress run",
"test": "start-server-and-test start http://localhost:8080 cy:run",
"test-no-record": "start-server-and-test start http://localhost:8080 cy:run:local",
"unit-test-ci": "karma start --single-run --browsers ChromeHeadless",
"test-cross-platform": "karma start karma-browserstack.conf.js",
"unit-test": "karma start",
"test-local": "start-server-and-test start http://localhost:8080 cy:run:local"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gautamkrishnar/nothing-private.git"
},
"keywords": [
"nothing",
"private",
"privacy"
],
"author": "Gautam krishna R <r.gautamkrishna@gmail.com> (http://www.gautamkrishnar.com/)",
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/gautamkrishnar/nothing-private/issues"
},
"homepage": "https://github.com/gautamkrishnar/nothing-private#readme",
"devDependencies": {
"all-contributors-cli": "^6.11.2",
"clientjs": "^0.2.1",
"cypress": "^4.5.0",
"jasmine-core": "^3.5.0",
"karma": "^4.4.1",
"karma-browserstack-launcher": "^1.5.1",
"karma-chrome-launcher": "^3.1.0",
"karma-jasmine": "^2.0.1",
"start-server-and-test": "^1.7.1",
"vite": "^4.0.4"
}
}