-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
76 lines (76 loc) · 1.69 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "css3-cube",
"version": "0.1.11",
"description": "A canvas-free, CSS3 only cube",
"main": "Cube.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"jsdoc": "jsdoc . -R README.md -c docs/jsdoc-conf.json && git add docs",
"build": "babel Cube.js -o Cube.min.js && git add Cube.min.js && git commit -m \"chore: Docs generation\"",
"release": "npm run jsdoc && npm run build && standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Zenoo/CSS3-Cube.git"
},
"keywords": [
"css3",
"cube",
"animation",
"interactive"
],
"author": "Zenoo",
"license": "MIT",
"bugs": {
"url": "https://github.com/Zenoo/CSS3-Cube/issues"
},
"homepage": "https://github.com/Zenoo/CSS3-Cube#readme",
"devDependencies": {
"@babel/cli": "^7.14.5",
"@babel/core": "^7.14.6",
"@babel/preset-env": "^7.14.7",
"babel-preset-minify": "^0.5.1",
"jsdoc": "^3.6.7",
"standard-version": "^9.3.0"
},
"standard-version": {
"types": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "chore",
"hidden": true
},
{
"type": "docs",
"section": "Documentation"
},
{
"type": "style",
"section": "Visual updates"
},
{
"type": "refactor",
"section": "Refactoring"
},
{
"type": "perf",
"section": "Performance"
},
{
"type": "progress",
"section": "Progress"
},
{
"type": "test",
"section": "Tests"
}
]
}
}