-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 2.41 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "pxt-impetus",
"version": "0.1.0",
"description": "Code editor built with [Microsoft MakeCode (PXT)]",
"author": "Matthew Tebbs <[email protected]>",
"publisher": "MuddyTummy Software LLC",
"license": "MIT",
"keywords": [
"education",
"JavsScript",
"TypeScript",
"AmmoJS",
"ThreeJS",
"Scratch",
"PXT"
],
"repository": {
"type": "git",
"url": "git+https://github.com/muddytummy/pxt-impetus.git"
},
"homepage": "https://github.com/muddytummy/pxt-impetus#readme",
"bugs": {
"url": "https://github.com/muddytummy/pxt-impetus/issues"
},
"files": [
"README.md",
"pxtarget.json",
"built/*.js",
"built/*.json",
"built/*.d.ts",
"docs/**",
"sim/public"
],
"browser": {
"enums": "./built.src/enums.js",
"ammo": "./other_modules/ammo.js",
"three.extra": "./other_modules/three.extra.js"
},
"browserify": {
"transform": [
"decomponentify",
"deglobalify"
]
},
"dependencies": {
"@types/bluebird": "^2.0.33",
"@types/dat.gui": "^0.7.2",
"@types/es6-shim": "^0.31.37",
"@types/lodash": "^4.14.116",
"@types/marked": "^0.4.1",
"@types/node": "^8.10.29",
"@types/object-hash": "^1.2.0",
"@types/stats": "^0.16.30",
"@types/three": "^0.92.19",
"dat.gui": "^0.7.2",
"debug": "^3.2.5",
"dotenv": "^6.0.0",
"es6-shim": "^0.35.3",
"lodash": "^4.17.11",
"object-hash": "^1.3.0",
"pxt": "^0.5.1",
"pxt-cloud-api": "github:muddytummy/pxt-cloud-api",
"pxt-cloud-client": "github:muddytummy/pxt-cloud-client",
"pxt-core": "^3.22.18",
"request": "^2.88.0",
"stats.js": "^0.17.0",
"three": "^0.96.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"browserify": "^16.2.2",
"decomponentify": "^0.1.0",
"deglobalify": "^0.2.0",
"del": "^3.0.0",
"glob": "^7.1.3",
"gulp": "^4.0.0",
"gulp-replace": "^1.0.0",
"gulp-typescript": "^4.0.2",
"less": "^3.8.1",
"merge2": "^1.2.2",
"semantic-ui-less": "~2.2.14",
"tslint": "^5.11.0",
"typescript": "^3.0.3",
"vinyl-buffer": "^1.0.1",
"vinyl-source-stream": "^2.0.0",
"watchify": "^3.11.0"
},
"engines": {
"node": ">=8.11.4",
"npm": ">=6.4.0"
},
"browserify-shim": {
"pxsim": "global:pxsim"
},
"scripts": {
"clean": "gulp clean",
"bundle": "gulp bundle",
"start": "gulp",
"package": "gulp package"
}
}