forked from brianium/watermarkjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.57 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "watermarkjs",
"version": "2.1.1",
"description": "Watermarked images in the browser",
"main": "dist/watermark.js",
"scripts": {
"test": "jest",
"bundle": "webpack",
"sync": "browser-sync start --server examples --index index.html --files 'examples/**/*.css, examples/**/*.html, examples/**/*.js' --port 4000",
"copy-dist": "cp dist/* examples/scripts",
"watch": "watch \"npm run build\" lib",
"build": "npm run bundle && npm run copy-dist && notify -t 'npm run build' -m 'complete'",
"dev": "npm run watch & npm run sync"
},
"repository": {
"type": "git",
"url": "[email protected]:brianium/watermarkjs.git"
},
"keywords": [
"canvas",
"watermark",
"image",
"file"
],
"author": "Brian Scaturro <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/brianium/watermarkjs/issues"
},
"homepage": "https://github.com/brianium/watermarkjs",
"devDependencies": {
"@babel/core": "^7.7.2",
"@babel/preset-env": "^7.7.1",
"babel-jest": "^24.9.0",
"babel-loader": "^8.0.6",
"babelify": "^10.0.0",
"browser-sync": "^2.26.7",
"browserify": "^16.5.0",
"browserify-derequire": "^1.0.1",
"jest-cli": "^24.9.0",
"node-notifier-cli": "^1.1.2",
"uglifyjs-webpack-plugin": "^2.2.0",
"watch": "^1.0.2",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.10"
},
"jest": {
"setupFiles": [
"<rootDir>/jestEnvironment.js"
],
"transform": {
"\\.js$": [
"babel-jest"
]
},
"moduleFileExtensions": [
"js"
]
}
}