-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 873 Bytes
/
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
{
"name": "cryptonotes",
"version": "1.3.0",
"description": "Super simple note encryption/decryption tool",
"main": "index.js",
"scripts": {
"webpack": "webpack-cli --config=webpack.config.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/diegogurpegui/cryptonotes.git"
},
"keywords": [
"cryptography",
"notes",
"private",
"personal"
],
"author": "Diego H. Gurpegui (https://diegogurpegui.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/diegogurpegui/cryptonotes/issues"
},
"homepage": "https://github.com/diegogurpegui/cryptonotes#readme",
"devDependencies": {
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"stream-browserify": "^3.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}