-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 897 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 897 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
35
36
37
38
39
{
"name": "node-c-parser",
"version": "1.0.11",
"description": "NodeJS library to parse C code.",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -R spec"
},
"repository": {
"type": "git",
"url": "https://github.com/taufique71/node-c-parser.git"
},
"keywords": [
"node",
"c",
"parser"
],
"author": "Md. Taufique Hussain",
"license": "ISC",
"bugs": {
"url": "https://github.com/taufique71/node-c-parser/issues"
},
"homepage": "https://github.com/taufique71/node-c-parser",
"dependencies": {
"ajv": "^4.0.2",
"async": "^1.5.1",
"jison": "^0.4.15",
"jsonfile": "^2.4.0",
"lex": "^1.7.9",
"lodash": "^4.5.1",
"node-c-lexer": "^1.0.0",
"uuid": "^2.0.1"
},
"devDependencies": {
"assert": "^1.3.0",
"chai": "^3.5.0",
"mocha": "^2.3.4"
}
}