forked from parksben/create-conical-gradient
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.76 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
{
"name": "create-conical-gradient",
"version": "1.1.0",
"description": "A pretty extension for CanvasRenderingContext2D to create a pattern of the conical gradient.",
"main": "dist/index.js",
"unpkg": "umd/create-conical-gradient.min.js",
"types": "types/index.d.ts",
"scripts": {
"dev": "webpack-dev-server --open --config ./config/webpack.config.base.js",
"build": "npm run build:cjs && npm run build:umd && npm run build:demo && npm run types",
"build:cjs": "webpack --config ./config/webpack.config.cjs.js",
"build:umd": "webpack --config ./config/webpack.config.umd.js",
"build:demo": "webpack --config ./config/webpack.config.base.js --mode development",
"types": "tsc",
"prepublishOnly": "npm run build && npm run changelog",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"keywords": [
"createConicalGradient",
"conical",
"gradient",
"canvas",
"CanvasRenderingContext2D",
"extension"
],
"author": "parksben",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.10.1",
"@babel/core": "^7.10.2",
"@babel/plugin-proposal-class-properties": "^7.10.1",
"@babel/plugin-proposal-optional-chaining": "^7.10.1",
"@babel/plugin-transform-arrow-functions": "^7.10.1",
"@babel/polyfill": "^7.10.1",
"@babel/preset-env": "^7.10.2",
"@types/typescript": "2.0.0",
"babel-loader": "^8.1.0",
"conventional-changelog-cli": "^2.0.34",
"core-js": "^3.6.5",
"rimraf": "^3.0.2",
"ts-loader": "8.1.0",
"typescript": "4.2.4",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11",
"webpack-dev-server": "^3.11.0"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/parksben/create-conical-gradient.git"
}
}