-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 775 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 775 Bytes
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
{
"name": "onec-syntaxparser",
"version": "0.1.11",
"description": "Parser for 1C bsl language based on regexp",
"main": "lib/parser.js",
"scripts": {
"test": "nyc --reporter=text mocha test",
"debug-test": "mocha test --debug-brk"
},
"keywords": [
"bsl",
"syntax",
"1C",
"1c"
],
"author": "Shenja Sosna <shenja@sosna.zp.ua>",
"license": "Apache-2.0",
"devDependencies": {
"mocha": "~6.0.0",
"chai": "~4.1.2",
"nyc": "^13.3.0",
"underscore": "~1.9.0"
},
"dependencies": {
"lokijs": "~1.5.0"
},
"repository": {
"type": "git",
"url": "https://github.com/xDrivenDevelopment/onec-syntaxparser.git"
},
"bugs": {
"url": "https://github.com/xDrivenDevelopment/onec-syntaxparser/issues"
}
}