-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 823 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 823 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
32
33
34
35
{
"name": "jcaml",
"version": "1.0.0",
"description": "JCaml is a new programming language",
"scripts": {
"test": "mocha --recursive",
"start": "node index.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/DavidTParks/JCaml.git"
},
"keywords": [
"JCaml"
],
"author": "Jake Woodlee, Matthew Sanders, David Parks, George Sarantinos",
"license": "ISC",
"bugs": {
"url": "https://github.com/DavidTParks/JCaml/issues"
},
"devDependencies": {
"eslint": "^3.18.0",
"eslint-config-airbnb-base": "^11.1.0",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-standard": "^2.1.1",
"mocha": "latest",
"should": "latest"
},
"dependencies": {
"ast": "0.0.1",
"ohm-js": "^0.12.3",
"yargs": "^7.1.0"
}
}