-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
46 lines (43 loc) · 1.01 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
{
"name": "bennu",
"version": "17.3.0",
"description": "Parser Combinator Library",
"author": "Matt Bierner",
"homepage": "http://bennu-js.com",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mattbierner/bennu.git"
},
"keywords": [
"parse",
"parser",
"combinator",
"combinatory",
"combinatory parsing",
"functional"],
"main": "index.js",
"directories": {
"lib": "dist_node/"
},
"files": [
"dist_node/",
"lib/",
"tests/",
"index.js",
"test.js"
],
"dependencies": {
"nu-stream": ">=3.1.0",
"seshet": "0.1.x"
},
"devDependencies": {
"nodeunit": "0.8.x"
},
"scripts": {
"test": "node test.js",
"build": "npm run build-amd && npm run build-node",
"build-amd": "khepri lib -o dist",
"build-node": "khepri lib -o dist_node --package_manager=node"
}
}