-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (28 loc) · 804 Bytes
/
package.json
File metadata and controls
29 lines (28 loc) · 804 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
{
"name": "preview",
"version": "0.0.2",
"description": "Preview files of any size in the browser",
"main": "src/main.js",
"scripts": {
"build": "browserify src/main.js | uglifyjs -cm > dist/bundle.js",
"build-dev": "browserify src/main.js -o dist/bundle.js --debug",
"watch": "nodemon --watch src --ext js,css,html --exec 'npm run build-dev'",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/statsim/preview.git"
},
"author": "Anton Zemlyansky",
"license": "MIT",
"dependencies": {
"drag-and-drop-files": "0.0.1",
"filestream": "^5.0.0",
"through2": "^3.0.1"
},
"devDependencies": {
"browserify": "^16.5.1",
"nodemon": "^2.0.3",
"uglify-es": "^3.3.9"
}
}