-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (49 loc) · 1.21 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
49
50
51
52
53
54
55
{
"name": "khepri-parse",
"version": "2.8.1",
"description": "Khepri language lexer and parser",
"author": "Matt Bierner",
"license": "MIT",
"homepage": "http://khepri-lang.com",
"keywords": [
"Khepri",
"parser",
"lexer"
],
"repository": {
"type": "git",
"url": "https://github.com/mattbierner/khepri-parse.git"
},
"bugs": {
"url" : "https://github.com/mattbierner/khepri/issues"
},
"main": "index.js",
"directories": {
"lib": "dist_node/"
},
"files": [
"dist_node/",
"dependencies/",
"bin/",
"lib/",
"tests/",
"index.js",
"test.js"
],
"dependencies": {
"nu-stream": ">=3.2.0",
"bennu": "17.2.x",
"khepri-ast": "4.8.x",
"xregexp": "2.0.x",
"require-directory": "1.2.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 --prune",
"build-node": "khepri lib -o dist_node --package_manager=node --prune"
}
}