-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
45 lines (45 loc) · 1.14 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
{
"name": "frb",
"version": "4.0.3",
"description": "Functional reactive bindings",
"keywords": [
"functional",
"reactive",
"bindings",
"observe",
"change"
],
"author": "Kris Kowal <kris@cixar.com> (http://github.com/kriskowal/)",
"contributors": [
"Kris Kowal <kris@cixar.com> (http://github.com/kriskowal/)",
"Benoit Marchant <benoit@montagestudio.com> (http://github.com/marchant/)"
],
"bugs": {
"mail": "benoit@montagestudio.com",
"url": "http://github.com/montagejs/frb/issues"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/montagejs/frb/raw/master/LICENSE.md"
}
],
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "http://github.com/montagejs/frb.git"
},
"main": "bindings",
"dependencies": {
"collections": "^5.1.3"
},
"devDependencies": {
"jasmine-node": "montagestudio/jasmine-node#master",
"@airbnb/node-memwatch": "^1.0.2",
"pegjs": "git://github.com/dmajda/pegjs.git"
},
"scripts": {
"test": "jasmine-node spec",
"build-parser": "pegjs --allowed-start-rules expression,sheet grammar.pegjs"
}
}