-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
49 lines (49 loc) · 1.07 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
{
"name": "webglazy",
"version": "3.1.3",
"description": "Responsive + configurable WebGL canvas replacement",
"keywords": [
"webgl",
"gl",
"canvas",
"replacement"
],
"main": "./dist/main.js",
"module": "./dist/bundle.js",
"repository": "https://github.com/seleb/WebGLazy.git",
"author": "Sean S. LeBlanc <[email protected]>",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.15.0",
"@babel/preset-env": "^7.15.0",
"babel-plugin-transform-class-properties": "^6.24.1",
"rollup": "^2.56.2",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-terser": "^7.0.2"
},
"scripts": {
"build": "rollup -c",
"prepare": "npm run build"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
[
"@semantic-release/git",
{
"assets": [
"dist/*.js",
"CHANGELOG.md",
"package.json",
"package-lock.json"
]
}
]
]
}
}