-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "zuckor",
"version": "0.1.2",
"description": "A basic Canvas engine.",
"main": "./dist/zuckor-min.js",
"scripts": {
"build": "npx rollup -c && npx dts-bundle-generator -o ./dist/zuckor.d.ts ./src/index.ts --umd-module-name Zuckor",
"test": "echo \"TBA\""
},
"types": "./dist/zuckor.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/TheGLander/BadCanvasGameEngine.git"
},
"keywords": [
"canvas",
"engine",
"zuckor"
],
"author": "G lander",
"license": "MIT",
"bugs": {
"url": "https://github.com/TheGLander/BadCanvasGameEngine/issues"
},
"homepage": "https://github.com/TheGLander/BadCanvasGameEngine#readme",
"dependencies": {},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"dts-bundle-generator": "^3.3.1",
"husky": "^4.2.5",
"prettier": "^2.0.5",
"rollup": "^1.26.3",
"rollup-plugin-analyzer": "^3.2.1",
"rollup-plugin-babel-minify": "^9.0.0",
"rollup-plugin-banner": "^0.2.1",
"rollup-plugin-inject": "^3.0.1",
"rollup-plugin-typescript2": "^0.25.2",
"semantic-release": "^17.0.7",
"typescript": "^3.7.2",
"typescript-eslint": "0.0.1-alpha.0"
},
"husky": {
"hooks": {
"commit-msg": "npx commitlint -E HUSKY_GIT_PARAMS",
"pre-push": "npm run test",
"pre-commit": "npm run build"
}
}
}