-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 720 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 720 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "picasso-canvas-fingerprinting",
"version": "1.0.1",
"description": "Implementation of a canvas fingerprinting algorithm inspired by the Picasso paper",
"main": "src/canvas.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/antoinevastel/picasso-like-canvas-fingerprinting.git"
},
"author": "Antoine Vastel",
"license": "MIT",
"bugs": {
"url": "https://github.com/antoinevastel/picasso-like-canvas-fingerprinting/issues"
},
"homepage": "https://github.com/antoinevastel/picasso-like-canvas-fingerprinting#readme",
"devDependencies": {
"mocha": "^10.0.0",
"puppeteer": "^15.4.0"
}
}