-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 940 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 940 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
33
34
35
{
"name": "stegosaurus",
"version": "1.0.0",
"description": "steganographic chat client for chrome",
"main": "main.js",
"directories": {
"test": "test"
},
"dependencies": {
"facebook-chat-api": "kylemsguy/facebook-chat-api"
},
"devDependencies": {
"browserify": "latest",
"uglify-js": "latest"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build-js": "browserify src/utils/fbapi.src.js --s module -o src/utils/fbapi.js && uglifyjs src/utils/fbapi.js --compress --mangle > src/utils/fbapi.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kylemsguy/stegosaurus.git"
},
"keywords": [
"steganography",
"chrome",
"extension"
],
"author": "stegosaurus",
"license": "MIT",
"bugs": {
"url": "https://github.com/kylemsguy/stegosaurus/issues"
},
"homepage": "https://github.com/kylemsguy/stegosaurus#readme"
}