-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 743 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 743 Bytes
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
{
"name": "plainscript",
"version": "1.0.0",
"description": "A compiler for a very small scripting language",
"main": "plainscript.js",
"repository": "git@github.com:rtoal/plainscript.git",
"author": "Ray Toal <rtoal@lmu.edu>",
"license": "MIT",
"scripts": {
"test": "jest"
},
"dependencies": {
"@types/js-beautify": "^1.8.1",
"@types/node": "^13.7.1",
"@types/yargs": "^15.0.3",
"js-beautify": "^1.10.3",
"ohm-js": "^0.14.0",
"typescript": "^3.7.5"
},
"devDependencies": {
"@types/jest": "^25.1.2",
"jest": "^25.1.0",
"prettier": "^1.19.1",
"ts-jest": "^25.2.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "^1.18.0"
},
"jest": {
"preset": "ts-jest"
}
}