-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
38 lines (38 loc) · 892 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
{
"name": "arc-js",
"version": "0.1.5",
"description": "An Arc-langugage compiler and VM-interpreter written in JavaScript.",
"homepage": "http://smihica.github.io/arc-js/",
"main": "arc.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha --reporter tap test/unit/impl.js || exit 1; for tes in `ls test/unit/arc/*.arc`; do bin/arcjs $tes || exit 1; done;"
},
"files": [
"arc.js",
"arc.min.js",
"arc_loader.js",
"bin"
],
"repository": {
"type": "git",
"url": "git://github.com/smihica/arc-js.git"
},
"keywords": [
"Arc",
"interpreter",
"language",
"arclang"
],
"author": "smihica",
"license": "Artistic-2.0",
"readmeFilename": "README.md",
"bin": {
"arcjs": "./bin/arcjs",
"arcjsc": "./bin/arcjsc"
},
"devDependencies": {
"chai": "1.7.2",
"mocha": "1.12.0",
"uglify-js": "^3.3.23"
}
}