-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.14 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.14 KB
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
{
"name": "mitrolisp",
"version": "1.0.0",
"description": "A new programming language inspired from Lisp",
"bin": {
"mitrolisp": "bin/mitrolisp"
},
"main": "index.js",
"scripts": {
"start": "node src/repl.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mit-27/MitroLisp.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/mit-27/MitroLisp/issues"
},
"homepage": "https://github.com/mit-27/MitroLisp#readme",
"dependencies": {
"@babel/core": "^7.4.5",
"@babel/generator": "^7.4.4",
"@babel/node": "^7.4.5",
"@babel/plugin-proposal-export-default-from": "^7.2.0",
"@babel/plugin-transform-modules-commonjs": "^7.4.4",
"chalk": "^2.4.2",
"inquirer": "^6.3.1",
"lodash": "^4.17.11",
"minimist": "^1.2.0"
},
"devDependencies": {
"babel-jest": "^24.8.0",
"jest": "^24.8.0",
"mock-fs": "^4.10.0"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
},
"testRegex": "^.+\\.test.jsx?$",
"moduleFileExtensions": [
"js",
"jsx",
"json",
"node"
]
}
}