forked from hedyorg/skulpt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.75 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
{
"name": "skulpt",
"version": "1.2.0",
"description": "Skulpt is a Javascript implementation of Python 2.x. Python that runs in your browser!",
"keywords": [
"skulpt"
],
"main": "./main.js",
"scripts": {
"help": "node support/build/help.js",
"regenparser": "node support/build/regenparser.js",
"brun": "node support/run/brun.js -p",
"prebtest": "node support/build/wrapmodules.js unit2 && node support/build/wrapmodules.js unit3",
"btest": "node support/run/brun.js -t",
"doc": "echo 'Building Documentation in docs/ProgMan' && jsdoc -c jsdoc.json HACKING.md",
"dist": "npm run build && npm run test && npm run doc && node support/build/copy2docs.js",
"repl": "node repl/repl.js",
"prebuild": "node support/build/wrapmodules.js internal",
"build": "webpack --mode production",
"postbuild": "node support/build/wrapmodules.js builtin",
"build-es3": "npm run build -- --env.languageOut=ECMASCRIPT3",
"build-es5": "npm run build -- --env.languageOut=ECMASCRIPT5",
"build-es19": "npm run build -- --env.languageOut=ECMASCRIPT_2019",
"predevbuild": "node support/build/wrapmodules.js internal",
"devbuild": "webpack --mode development",
"postdevbuild": "node support/build/wrapmodules.js builtin",
"watch": "webpack --watch --mode development",
"test": "node test/testwrapper.js && node test/testunit.js && node test/testunit.js --python3",
"start": "node support/run/runfile.js",
"profile": "node --prof --no-logfile-per-isolate --log-internal-timer-events support/run/runfile.js -o",
"postprofile": "node --prof-process v8.log"
},
"repository": {
"type": "git",
"url": "https://github.com/skulpt/skulpt.git"
},
"bugs": {
"url": "https://github.com/skulpt/skulpt/issues"
},
"homepage": "http://www.skulpt.org/",
"author": {
"name": "Brad Miller"
},
"license": "MIT",
"private": true,
"devDependencies": {
"acorn": "^6.1.1",
"chalk": "^2.4.2",
"clean-webpack-plugin": "^2.0.2",
"closure-webpack-plugin": "^2.5.0",
"commander": "^2.20.0",
"compression-webpack-plugin": "^2.0.0",
"copy-webpack-plugin": "^5.1.1",
"ejs": "^3.1.7",
"eslint": "^5.16.0",
"eslint-loader": "^2.1.2",
"express": "^4.17.3",
"fastestsmallesttextencoderdecoder": "^1.0.22",
"git-revision-webpack-plugin": "^3.0.3",
"google-closure-compiler": "^20210202.0.0",
"js-beautify": "^1.10.0",
"jsdoc": "^3.6.11",
"micro-strptime": "^0.2.3",
"open": "^6.3.0",
"readline-sync": "^1.4.9",
"setimmediate": "^1.0.5",
"shelljs": "^0.8.5",
"strftime": "^0.10.1",
"terser": "^5.14.2",
"webpack": "^4.32.0",
"webpack-cli": "^3.3.2"
},
"engines": {
"node": ">=10.4"
},
"dependencies": {
"jsbi": "^3.2.3"
}
}