-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.63 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
{
"name": "st-andrews-algol-compiler",
"version": "1.0.0",
"description": "",
"main": "/bin/sAlgolCompiler/Compiler.js",
"scripts": {
"test": "./node_modules/.bin/mocha ./bin/test/**/*.js",
"watch": "./node_modules/.bin/tsc -w",
"web-compile": "./node_modules/.bin/webpack --config interface.config.js",
"tsc-compile": "./node_modules/.bin/tsc",
"typings-install": "./node_modules/.bin/typings install",
"postinstall": "npm run typings-install && npm run tsc-compile && npm run web-compile|| true"
},
"repository": {
"type": "git",
"url": "git+https://github.com/billytrend/st-andrews-algol-compiler.git"
},
"bin": {},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/billytrend/st-andrews-algol-compiler/issues"
},
"homepage": "https://github.com/billytrend/st-andrews-algol-compiler#readme",
"dependencies": {
"acorn": "^3.0.4",
"argparse": "^1.0.7",
"awesome-typescript-loader": "^0.15.9",
"babel-core": "^6.3.26",
"babel-loader": "^6.2.0",
"brace": "^0.7.0",
"chai": "^3.4.1",
"escape-html": "^1.0.3",
"escape-string-regexp": "^1.0.4",
"escodegen": "^1.8.0",
"esprima": "^2.7.2",
"json-loader": "^0.5.4",
"lodash": "^3.10.1",
"mocha": "^2.3.4",
"mocha-loader": "^0.7.1",
"raw-loader": "^0.5.1",
"react": "^0.14.7",
"react-ace": "^3.2.0",
"react-dom": "^0.14.7",
"readline-sync": "^1.2.21",
"string-hash": "^1.1.0",
"ts-jsx-loader": "^0.2.1",
"ts-loader": "^0.8.1",
"ts-npm-module": "^1.0.5",
"typescript": "^1.8.9",
"typings": "^0.7.11",
"webpack": "~1.12.14"
}
}