-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 749 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 749 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
{
"name": "pokehashjs",
"version": "1.0.0",
"description": "",
"main": "app.js",
"private": true,
"scripts": {
"dev": "npx watchify ./src/app.js -o ./dist/background.js",
"build": "npx browserify ./src/app.js -o ./dist/background.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LonJonn/PokehashJS.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/LonJonn/PokehashJS/issues"
},
"homepage": "https://github.com/LonJonn/PokehashJS#readme",
"dependencies": {
"axios": "^0.18.0",
"es6-promisify": "^6.0.1",
"image-hash": "^3.3.7"
},
"devDependencies": {
"browserify": "^16.2.3",
"eslint": "^5.16.0",
"watchify": "^3.11.1"
}
}