-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.04 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": "emhugs",
"version": "2.0.0",
"description": "haskell interpreter(hugs) using emscripten",
"main": "index.js",
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/junjihashimoto/hugs-js.git"
},
"keywords": [
"haskell",
"hugs",
"emscripten"
],
"author": "Junji Hashimoto",
"license": "BSD",
"bugs": {
"url": "https://github.com/junjihashimoto/hugs-js/issues"
},
"homepage": "https://github.com/junjihashimoto/hugs-js",
"files": [
"index.js",
"js/hugs.js",
"js/hugs.wasm",
"hugs98-Sep2006/hugsdir",
"hugs98-Sep2006/src/ffihugs.js",
"hugs98-Sep2006/src/ffihugs.wasm",
"hugs98-Sep2006/src/hugs.js",
"hugs98-Sep2006/src/hugs.wasm",
"hugs98-Sep2006/src/runhugs.js",
"hugs98-Sep2006/src/runhugs.wasm",
"bin"
],
"bin": {
"ffihugs": "./bin/ffihugs",
"runhugs": "./bin/runhugs",
"hugs": "./bin/hugs"
},
"devDependencies": {
"mocha": "~1.7.4"
}
}