-
Notifications
You must be signed in to change notification settings - Fork 116
/
Copy pathpackage.json
50 lines (50 loc) · 1.28 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
{
"name": "vintagejs",
"description": "Add a retro/vintage effect to images using the HTML5 canvas element",
"license": "MIT",
"version": "2.2.0",
"author": {
"name": "Robert Fleischmann",
"email": "[email protected]",
"url": "https://robert-fleischmann.com"
},
"main": "./dist/vintage.js",
"scripts": {
"build": "npm run build-module; npm run minify-module",
"build-module": "browserify ./src/index.js -s vintagejs > ./dist/vintage.js",
"minify-module": "uglifyjs ./dist/vintage.js > ./dist/vintage.min.js",
"test": "mocha --require @babel/register"
},
"dependencies": {
"nullthrows": "^1.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.2",
"@babel/preset-env": "^7.23.2",
"@babel/preset-flow": "^7.22.15",
"@babel/register": "^7.22.15",
"assert": "^2.1.0",
"babel-plugin-add-module-exports": "^1.0.4",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"expect.js": "^0.3.1",
"flow-bin": "^0.218.1",
"flow-typed": "^3.9.0",
"mocha": "^10.2.0",
"sinon": "^16.1.0",
"uglify-js": "^3.17.4"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"@babel/preset-env",
"@babel/preset-flow"
]
}
]
]
}
}