-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.42 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
{
"name": "simple-turtle",
"version": "2.6.0",
"description": "A TypeScript implementation of the famous TurtleJS project based on LOGO.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/*.js",
"dist/*.d.ts"
],
"scripts": {
"test": "npm run build && npm run build-test && npx jasmine",
"start": "ts-node-dev --respawn src/index.ts",
"build": "rmdir /s /Q dist & tsc",
"build-test": "tsc -p spec/tsconfig.json",
"build-web": "rmdir /s /Q dist & tsc && npm exec webpack",
"deploy": "gh-pages -d dist/browser"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joker876/simple-turtle.git"
},
"keywords": [
"turtle",
"simple",
"turtlejs",
"turtle-js",
"logo",
"turtle-logo"
],
"author": "joker876",
"license": "MIT",
"bugs": {
"url": "https://github.com/joker876/simple-turtle/issues"
},
"homepage": "https://github.com/joker876/simple-turtle#readme",
"devDependencies": {
"@types/jasmine": "^4.0.3",
"@types/node": "^18.7.8",
"canvas": "^2.10.2",
"jasmine": "^4.1.0",
"jasmine-ts-console-reporter": "^3.1.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"events": "^3.3.0"
}
}