-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.11 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
{
"name": "codehelp-compiler",
"version": "1.0.2",
"description": "A library that allows you to run programs in 5 languages using node.js, useful for creating online IDE's and similar projects.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "npm run tsc --",
"tsc": "tsc"
},
"keywords": [
"codehelp-compiler",
"compile",
"run",
"execute",
"python",
"java",
"node",
"nodejs",
"gcc",
"cpp",
"c",
"c++"
],
"directories": {
"lib": "lib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thepranaygupta/codehelp-compiler.git"
},
"author": "Pranay Gupta <pranaygupta.aec@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/thepranaygupta/codehelp-compiler/issues"
},
"homepage": "https://github.com/thepranaygupta/codehelp-compiler#readme",
"devDependencies": {
"@types/node": "^10.12.15",
"typescript": "^3.5.3"
},
"files": [
"dist",
"extensions-map.json"
]
}