-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 840 Bytes
/
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
{
"name": "elar",
"version": "0.0.2",
"description": "a language like lisp implement by javascript",
"main": "index.js",
"bin": {
"elar": "./bin/elar"
},
"scripts": {
"start": "node ./src/repl.js",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/baixiaoji/elementary_arithmetic.git"
},
"keywords": [],
"author": "baixiaoji",
"license": "MIT",
"bugs": {
"url": "https://github.com/baixiaoji/elementary_arithmetic/issues"
},
"homepage": "https://github.com/baixiaoji/elementary_arithmetic#readme",
"devDependencies": {
"@babel/preset-env": "^7.9.6",
"@types/jest": "^25.2.1",
"babel-jest": "^26.0.1",
"jest": "^26.0.1",
"jest-watch-typeahead": "^0.6.0"
},
"dependencies": {
"chalk": "^4.0.0",
"inquirer": "^7.1.0"
}
}