-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
36 lines (36 loc) · 870 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
36
{
"name": "blink",
"version": "0.0.1",
"description": "A tiny object-oriented programming language",
"main": "build/main/run.js",
"dependencies": {
"babel-preset-es2015": "^6.1.18",
"readline-sync": "^1.2.22"
},
"devDependencies": {
"babel-cli": "^6.2.0",
"mocha": "^2.3.4"
},
"scripts": {
"build": "babel src --source-maps --out-dir build",
"repl": "node build/main/run.js",
"test": "mocha --recursive build/test/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/andela-ftchirou/blink.git"
},
"keywords": [
"blink",
"parser",
"tokenizer",
"type-checking",
"interpreter"
],
"author": "Faiçal Tchirou",
"license": "ISC",
"bugs": {
"url": "https://github.com/andela-ftchirou/blink/issues"
},
"homepage": "https://github.com/andela-ftchirou/blink#readme"
}