forked from felixhao28/JSCPP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.37 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
47
48
49
50
51
52
53
54
55
56
57
{
"name": "JSCPP",
"version": "2.0.1",
"description": "A simple C++ interpreter written in JavaScript",
"keywords": [
"c++",
"cpp",
"interpreter",
"c"
],
"homepage": "https://github.com/felixhao28/JSCPP",
"bugs": {
"url": "https://github.com/felixhao28/JSCPP/issues",
"email": "[email protected]"
},
"author": "Felix Hao <[email protected]>",
"maintainers": [
"Felix Hao <[email protected]>"
],
"contributors": [
"Felix Hao <[email protected]>"
],
"scripts": {
"test": "grunt test",
"prepublish": "grunt build"
},
"main": "main.js",
"dependencies": {
"printf": "^0.2.1"
},
"devDependencies": {
"chai": "^2.3.0",
"coffee-script": "^1.9.3",
"grunt": "^0.4.5",
"grunt-browserify": "^3.8.0",
"grunt-contrib-clean": "^0.6.0",
"grunt-contrib-coffee": "^0.13.0",
"grunt-contrib-concat": "^0.5.1",
"grunt-contrib-copy": "^0.8.0",
"grunt-contrib-uglify": "^0.8.1",
"grunt-contrib-watch": "^0.6.1",
"grunt-mocha-test": "^0.12.7",
"grunt-newer": "^1.1.1",
"grunt-peg": "^1.5.0",
"grunt-rename": "^0.1.4",
"load-grunt-tasks": "^3.2.0",
"mocha": "^2.2.5",
"mocha-traceur": "^2.1.0",
"pegjs": "^0.8.0",
"printf": "^0.2.3"
},
"repository": {
"type": "git",
"url": "https://github.com/felixhao28/JSCPP.git"
},
"licenses": "MIT"
}