-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.59 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
{
"name": "ts-python-interpreter",
"version": "0.0.1",
"private": true,
"scripts": {
"compile-node": "./node_modules/typescript/bin/tsc src/main.ts --outDir ./compiled --module commonjs",
"compile-loop": "./node_modules/typescript/bin/tsc src/loopAllPyc.ts --outDir ./compiled --module commonjs",
"compile-test": "./node_modules/typescript/bin/tsc test/asserts.ts --outDir ./compiled-test/ --module commonjs",
"compile-test2": "./node_modules/typescript/bin/tsc test/tests.ts --outDir ./compiled-test/ --module amd",
"optimize-test": "node ./node_modules/requirejs/bin/r.js -o build-test.js",
"compile-amd": "./node_modules/typescript/bin/tsc src/InterpretPyc.ts --outDir ./compiled --module amd",
"optimize": "node ./node_modules/requirejs/bin/r.js -o build.js",
"main": "node ./compiled/src/main.js",
"start": "node app.js",
"loop": "echo sample_pycs/*.py | xargs -n 1 ./doc/pycompiler.py && node ./compiled/src/loopAllPyc.js",
"test-show": "./node_modules/grunt-cli/bin/grunt show-results",
"debug": "./node_modules/node-inspector/bin/node-debug.js compiled/src/main.js"
},
"dependencies": {
"typescript": "1.0.1",
"requirejs": "2.1.15",
"grunt-cli": "0.1.13",
"async": "0.9.0",
"express": "3.5.0",
"node-inspector": "0.7.4"
},
"devDependencies": {
"grunt": "^0.4.5",
"grunt-contrib-connect": "^0.8.0",
"grunt-contrib-qunit": "^0.5.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-open": "^0.2.3",
"grunt-typescript": "^0.3.8",
"qunitjs": "^1.15.0",
"requirejs": "^2.1.15",
"typescript": "^1.0.1"
}
}