-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
41 lines (41 loc) · 1.28 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
{
"name": "@hop/hiphop",
"version": "1.3.0",
"description": "HipHop.js, (A)synchronous Web Reactive Programming",
"homepage": "http://hop.inria.fr/home/hiphop/index.html",
"license" : "Apache-2.0",
"bugs": {
"url": "https://github.com/manuel-serrano/hiphop"
},
"repository": {
"type": "git",
"url": "https://github.com/manuel-serrano/hiphop"
},
"keywords": [
"programming language",
"synchronous programming",
"reactive programming"
],
"bin": {
"hhc" : "./bin/hhc.mjs"
},
"engines": {
"hop": ">=3.7.0" ,
"node": ">=18.13.0"
},
"os": [ "darwin", "linux" ],
"main": "lib/hiphop.js",
"types": "lib/hiphop.d.ts",
"type": "module",
"dependencies": {
"@hop/hopc": "https://www-sop.inria.fr/members/Manuel.Serrano/software/npmx/hopc.tgz",
"@hop/readlines": "https://www-sop.inria.fr/members/Manuel.Serrano/software/npmx/readlines.tgz"
},
"devDependencies": {
"mocha": "^10.2.0"
},
"scripts": {
"test": "HIPHOP_RESOLVE=\".\" NODE_OPTIONS=\"--enable-source-maps --no-warnings --loader ./lib/hiphop-loader.mjs\" mocha --exit test/**/*.test.js",
"prepare": "node etc/configure.js package.json lib/config.js.in lib/config.js && node etc/buildmodules.js"
}
}