forked from malcolmkiano/swahili
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 KB
/
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
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "swahili-lang",
"version": "0.10.2",
"description": "A new programming language with semantics borrowed from the Swahili language to help teach programming concepts to Swahili speaking students.",
"repository": {
"type": "git",
"url": "git+https://github.com/malcolmkiano/swahili.git"
},
"main": "bin/index.js",
"scripts": {
"format": "prettier --write . && git add .",
"test": "jest"
},
"pre-commit": [
"format"
],
"bin": {
"swahili": "bin/index.js"
},
"keywords": [
"swahili",
"programming-language"
],
"contributors": [
"Malcolm Kiano <hello@malcolmkiano.com> (https://malcolmkiano.com)",
"Patrick Wendo <wendonyang@gmail.com> (https://github.com/w3ndo)"
],
"license": "GPLV3",
"dependencies": {
"colors": "^1.4.0",
"dotenv": "^10.0.0",
"prompt-sync": "^4.2.0"
},
"devDependencies": {
"eslint": "^7.7.0",
"jest": "^26.4.2",
"pre-commit": "^1.2.2",
"prettier": "^2.1.1"
},
"bugs": {
"url": "https://github.com/malcolmkiano/swahili/issues"
},
"homepage": "https://github.com/malcolmkiano/swahili#readme",
"directories": {
"doc": "docs",
"example": "examples"
}
}