forked from SiegfriedEhret/arnoldc-to-js
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
46 lines (46 loc) · 916 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
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "arnoldc.js",
"version": "1.0.0",
"description": "Compiler from ArnoldC to Javascript",
"type": "module",
"main": "main.js",
"directories": {
"example": "examples"
},
"scripts": {
"test": "mocha"
},
"bin": {
"arnoldc.js": "./bin/main.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ThomasCrvsr/arnoldc-to-js.git"
},
"keywords": [
"arnoldc",
"compiler"
],
"author": "ThomasCrvsr",
"license": "ISC",
"bugs": {
"url": "https://github.com/ThomasCrvsr/arnoldc-to-js/issues"
},
"homepage": "https://github.com/ThomasCrvsr/arnoldc-to-js",
"devDependencies": {
"del": "^5",
"jshint": "^2.10.2",
"jshint-stylish": "~1.0.0"
},
"dependencies": {
"brfs": "^1.4.1",
"jison": "^0.4.18",
"mocha": "^10.2.0",
"source-map": "^0.7.4"
},
"browserify": {
"transform": [
"brfs"
]
}
}