-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 2.02 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
77
78
79
80
{
"name": "better-turtle",
"version": "1.5.2",
"description": "A TypeScript port of the famous Turtle JS project",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"format": "prettier -w src/* examples/*",
"check-format": "prettier -c src/* examples/*",
"build": "tsc",
"build:webpack": "webpack",
"prebuild:webpack": "npm run build",
"prepublish": "npm run build",
"clean": "rm -rf dist",
"build:docs": "typedoc src/index.ts",
"prebuild:docs": "ts-node examples/index.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Caesarovich/better-turtle.git"
},
"keywords": [
"js-turtle",
"education",
"learning"
],
"author": "Caesarovich",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/Caesarovich/better-turtle/issues"
},
"homepage": "https://github.com/Caesarovich/better-turtle#readme",
"devDependencies": {
"@babel/preset-env": "^7.22.20",
"@babel/preset-typescript": "^7.23.0",
"@types/gifencoder": "^2.0.1",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.4",
"canvas": "^2.10.2",
"cz-conventional-changelog": "^3.3.0",
"gifencoder": "^2.0.1",
"jest": "^29.7.0",
"jest-image-snapshot": "^6.2.0",
"prettier": "^2.5.1",
"semantic-release": "^22.0.5",
"@semantic-release/git": "10.0.1",
"ts-jest": "^29.1.1",
"ts-loader": "^9.2.7",
"ts-node": "^10.9.1",
"typedoc": "^0.24.7",
"typescript": "5.0.4",
"webpack": "^5.70.0",
"webpack-cli": "^5.1.1"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/github",
{
"assets": [
"dist/main.min.js"
]
}
],
"@semantic-release/npm",
"@semantic-release/git"
],
"branches": [
"main"
]
},
"types": "dist/index.d.ts",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}