forked from acornjs/acorn
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
46 lines (46 loc) · 1.07 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
45
46
{
"name": "objj-parser",
"description": "JavaScript (ECMAScript) and Objective-J parser with preprocessor.",
"homepage": "http://github.com/mrcarlberg/acorn",
"main": "acorn.js",
"version": "0.4.3",
"engines": {
"node": ">=14.0.0"
},
"contributors": [
{
"name": "Martin Carlberg",
"email": "[email protected]",
"web": "http://carlberg.org"
}
],
"repository": {
"type": "git",
"url": "https://github.com/mrcarlberg/acorn.git"
},
"bugs": "https://github.com/mrcarlberg/acorn/issues",
"licenses": [
{
"type": "MIT",
"url": "http://marijnhaverbeke.nl/acorn/LICENSE"
}
],
"scripts": {
"test": "node test/run.js"
},
"bin": {
"acorn": "./bin/acorn"
},
"keywords": [
"JavaScript",
"ECMAScript",
"Objective-J",
"objj",
"Cappuccino",
"parser",
"preprocessor",
"pre-processor",
"pre processor",
"processor"
]
}