-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
43 lines (43 loc) · 1.25 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
{
"name": "pasukon",
"version": "0.0.1",
"description": "An easy parser generator for JavaScript, using parser combinators",
"repository": "https://github.com/gosukiwi/Pasukon",
"main": "index.js",
"publishConfig": { "registry": "https://npm.pkg.github.com/" },
"bin": {
"pasukon": "./bin/cli.js"
},
"directories": {
"lib": "lib",
"test": "test"
},
"dependencies": {},
"devDependencies": {
"benchmark": "^2.1.4",
"chai": "^4.2.0",
"chai-string": "^1.5.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-mocha": "^8.0.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"grunt": "^1.3.0",
"grunt-browserify": "^5.3.0",
"grunt-terser": "^1.0.0",
"mocha": "^8.1.2",
"pegjs": "^0.10.0"
},
"scripts": {
"test": "mocha test/**/*-test.js",
"watch": "mocha --watch test/**/*-test.js",
"grammar-pegjs": "pegjs -o lib/pegjs/grammar.js lib/pegjs/grammar.pegjs",
"grammar": "node bin/cli.js lib/grammar.pasukon lib/grammar.js",
"benchmark": "node test/benchmarks/suite.js",
"build": "grunt"
},
"author": "Federico Ramirez",
"license": "MIT"
}