-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
33 lines (33 loc) · 945 Bytes
/
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
{
"name": "@fluffy-spoon/csharp-parser",
"version": "1.0.0",
"description": "",
"main": "./dist/src/Index",
"typings": "./dist/src/Index.d.ts",
"scripts": {
"test": "jasmine",
"build": "tsc",
"nearley:build": "nearleyc src/nearley/grammar.ne -o src/nearley/grammar.js",
"nearley:unparse": "nearley-unparse -n 3 src/nearley/grammar.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ffMathy/FluffySpoon.JavaScript.CSharpParser.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ffMathy/FluffySpoon.JavaScript.CSharpParser/issues"
},
"homepage": "https://github.com/ffMathy/FluffySpoon.JavaScript.CSharpParser#readme",
"devDependencies": {
"@types/jasmine": "^3.6.2",
"@types/node": "^16.0.0",
"@types/safe-regex": "^1.1.1",
"jasmine": "^3.6.3",
"safe-regex": "^2.1.1"
},
"dependencies": {
"nearley": "^2.16.0"
}
}