-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
42 lines (42 loc) · 1.3 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
{
"name": "canvas-webworker",
"version": "0.0.3",
"description": "Pure JavaScript Canvas implimentation that can be used in WebWorkers",
"main": "lib/index.js",
"directories": {
"example": "lib"
},
"scripts": {
"start": "webpack-dev-server -w",
"prepublish": "npm run build",
"build": "babel --plugins @babel/plugin-proposal-object-rest-spread,@babel/plugin-proposal-class-properties -d lib/ src/",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/casperlamboo/canvas-webworker.git"
},
"author": "Casper Lamboo",
"license": "MIT",
"bugs": {
"url": "https://github.com/casperlamboo/canvas-webworker/issues"
},
"homepage": "https://github.com/casperlamboo/canvas-webworker#readme",
"dependencies": {
"clipper-js": "^1.0.2",
"get-pixels": "^3.3.2"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-object-rest-spread": "^7.4.0",
"@babel/preset-env": "^7.4.2",
"babel-loader": "^8.0.5",
"html-webpack-plugin": "^3.2.0",
"html-webpack-template": "^6.2.0",
"webpack": "^4.29.6",
"webpack-dev-server": "^3.2.1",
"worker-loader": "^2.0.0"
}
}