forked from microsoft/pxt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
122 lines (122 loc) · 3.01 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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "pxt-core",
"version": "1.5.28",
"description": "Microsoft MakeCode, also known as Programming Experience Toolkit (PXT), provides Blocks / JavaScript tools and editors",
"keywords": [
"TypeScript",
"JavaScript",
"Blockly",
"education",
"microbit",
"Adafruit",
"pxt",
"Microsoft",
"Microsoft MakeCode"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Microsoft/pxt.git"
},
"author": "Microsoft Corporation",
"license": "MIT",
"homepage": "https://github.com/Microsoft/pxt#readme",
"files": [
"README.md",
"built/commandparser.js",
"built/buildengine.js",
"built/hid.js",
"built/gdb.js",
"built/serial.js",
"built/clidbg.js",
"built/pxt.js",
"built/pxt-common.json",
"built/blockly.d.ts",
"built/pxt.d.ts",
"built/pxtarget.d.ts",
"built/pxtpackage.d.ts",
"built/pxtparts.d.ts",
"built/pxtlib.js",
"built/pxtlib.d.ts",
"built/pxtcompiler.d.ts",
"built/pxtsim.d.ts",
"built/pxtblocks.d.ts",
"built/pxtrunner.d.ts",
"built/pxteditor.d.ts",
"built/typescriptServices.d.ts",
"built/nodeutil.js",
"built/server.js",
"built/electron.js",
"built/pyconv.js",
"built/web/fonts",
"built/web/*.js",
"built/web/*.css",
"built/web/*.html",
"built/web/vs/editor/editor.main.js",
"built/web/vs/language/typescript/lib/*.js",
"built/web/vs/language/typescript/src/*.js",
"libs/lang-test0/*.ts",
"libs/lang-test0/pxt.json",
"pxtarget.json",
"webapp/public",
"typings/**",
"localtypings/**",
"docfiles",
"theme"
],
"main": "built/pxt.js",
"engines": {
"node": ">=5.7.0",
"npm": ">=3.0.0"
},
"dependencies": {
"bluebird": "^3.1.4",
"faye-websocket": "^0.11.0",
"highlight.js": "^9.7.0",
"lzma": "^2.3.2",
"marked": "^0.3.5",
"fuse.js": "2.6.1",
"rimraf": "2.5.4",
"request": "^2.79.0",
"browserify": "^13.0.0",
"rtlcss": "^2.1.2"
},
"optionalDependencies": {
"keytar": "^3.0.2",
"node-hid": "^0.5.2",
"serialport": "^4.0.1"
},
"devDependencies": {
"chai": "^3.5.0",
"monaco-editor": "0.8.1",
"pxt-monaco-typescript": "2.1.6",
"jake": "^8.0.12",
"jquery": "^2.2.0",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.0.0",
"karma-mocha": "^1.3.0",
"less": "^2.6.0",
"mocha": "^3.2.0",
"pouchdb": "^5.2.1",
"react": "^0.14.8",
"react-dom": "^0.14.8",
"semantic-ui-less": "^2.2.10",
"typings": "^2.1.0",
"tslint": "^3.9.0",
"typescript": "1.8.7",
"webfonts-generator": "^0.3.3"
},
"scripts": {
"test": "jake travis --trace",
"clean": "jake clean",
"lint": "jake lint",
"start": "jake default",
"test:all": "jake test",
"test:decompiler": "jake testdecompiler",
"test:decompiler-errors": "jake testdecompilererrors",
"test:err": "jake testerr",
"test:fmt": "jake testfmt",
"test:lang": "jake testlang",
"update": "jake update"
}
}