-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
44 lines (44 loc) · 1.46 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
{
"name": "moo-ignore",
"version": "2.5.2",
"description": "",
"main": "index.js",
"scripts": {
"compile-separated-ignore": "nearleyc test/test-grammar.ne -o test/test-grammar.js",
"compile-2-args": "nearleyc test/test-grammar-2-args.ne -o test/test-grammar-2-args.js",
"compile-combined": "nearleyc test/test-grammar-combined.ne -o test/test-grammar-combined.js",
"compile": "npm run compile-separated-ignore; npm run compile-2-args; npm run compile-combined",
"compile-test": "npm run compile; mocha test/test.js",
"test": "mocha test/test.js",
"test-cov": "c8 --check-coverage --lines 100 --functions 100 --branches 100 --statements 100 mocha test/test.js --reporter nyan",
"doc": "rm -fR docs/*; jsdoc -d docs -c jsdoc.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ULL-ESIT-PL/moo-ignore.git"
},
"keywords": [
"Nearley",
"moo",
"lexer",
"ULL"
],
"author": "Casiano Rodriguez-Leon <casiano.rodriguez.leon@gmail.com> (https://github.com/crguezl)",
"contributors": [
"Daniel del Castillo (https://www.npmjs.com/~daniel-del-castillo)"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/ULL-ESIT-PL/moo-ignore/issues"
},
"homepage": "https://github.com/ULL-ESIT-PL/moo-ignore#readme",
"dependencies": {
"moo": "^0.5.1",
"nearley": "^2.20.1"
},
"devDependencies": {
"chai": "^4.3.4",
"mocha": "^8.4.0",
"tui-jsdoc-template": "^1.2.2"
}
}