-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
44 lines (44 loc) · 986 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
37
38
39
40
41
42
43
44
{
"name": "sk",
"version": "0.0.1",
"description": "Smalltalk kernel",
"main": "taskfile.js",
"directories": {
"test": "tests"
},
"publish": false,
"private": true,
"dependencies": {
"commander": "^3.0.0",
"compileSK": "file:./local_modules/compileSK",
"concat": "^1.0.3",
"readline-sync": "^1.4.10",
"rimraf": "^2.6.2",
"taskr": "^1.1.0"
},
"taskr": {
"requires": [
"./local_modules/compileSK/index.js"
]
},
"devDependencies": {
"@taskr/concat": "^1.1.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LabWare/Kernel-Compiler.git"
},
"keywords": [
"smalltalk",
"javascript"
],
"author": "LabWare",
"license": "SEE LICENSE IN license.txt",
"bugs": {
"url": "https://github.com/LabWare/Kernel-Compiler/issues"
},
"homepage": "https://github.com/LabWare/Kernel-Compiler#readme"
}