-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
58 lines (58 loc) · 1.58 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
56
57
58
{
"name": "noam",
"preferGlobal": false,
"version": "0.0.4",
"author": "Ivan Zuzak <izuzak@gmail.com> (https://ivanzuzak.info)",
"description": "JavaScript library for working with automata and formal grammars for regular and context-free languages",
"bugs" : "https://github.com/izuzak/noam/issues",
"homepage" : "https://github.com/izuzak/noam",
"scripts": {
"test": "grunt --verbose",
"build": "grunt",
"benchmark": "node ./benchmarks/benchmark.js"
},
"main": "./lib/node/noam.js",
"repository": {
"type": "git",
"url": "https://github.com/izuzak/noam.git"
},
"contributors": [
"Ivan Budiselic <ibudiselic@gmail.com> (https://github.com/ibudiselic)",
"Vedrana Jankovic <vedrana.jankovic@gmail.com> (http://vedri.ca/)"
],
"keywords": [
"automata",
"finite-state machines",
"formal grammars",
"regular languages",
"regular expressions",
"context-free languages",
"chomsky hierarchy"
],
"dependencies" : {
"cli-table" : ">=0.2.0",
"structure.js" : ">=0.0.x"
},
"devDependencies": {
"jasmine-node" : ">=1.7.0",
"benchtable" : ">=0.0.2",
"grunt" : "~0.4.1",
"grunt-cli" : "~0.1.7",
"grunt-jasmine-node" : ">=0.1.0",
"grunt-jsvalidate" : ">=0.2.1",
"grunt-contrib-jshint" : "~0.4.3",
"grunt-contrib-concat" : "~0.3.0",
"grunt-contrib-uglify" : "~0.2.0",
"istanbul" : ">=0.1.25"
},
"bundleDependencies": [],
"licenses": [
{
"type" : "Apache-2.0",
"url" : "https://raw.github.com/izuzak/noam/master/LICENSE"
}
],
"engines": {
"node" : ">=0.6.10"
}
}