-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.08 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.08 KB
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
{
"name": "compiler-micro-service",
"version": "0.0.0",
"description": "A server that provides a REST API for arbitrary language to JS compilation.",
"main": "app.js",
"engines" : {
"node": ">=6.0"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "gulp",
"dev": "gulp dev"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codeversation/compiler-micro-service.git"
},
"author": "Alex Aralis",
"license": "MIT",
"bugs": {
"url": "https://github.com/codeversation/compiler-micro-service/issues"
},
"homepage": "https://github.com/codeversation/compiler-micro-service#readme",
"dependencies": {
"babel-preset-es2015": "^6.16.0",
"babel-preset-stage-0": "^6.16.0",
"body-parser": "^1.15.2",
"dotenv": "^2.0.0",
"eslint": "^3.8.0",
"express": "^4.14.0",
"gulp": "^3.9.1",
"gulp-babel": "^6.1.2",
"gulp-changed": "^1.3.2",
"gulp-util": "^3.0.7"
},
"devDependencies": {
"babel-eslint": "^7.0.0",
"gulp-eslint": "^3.0.1",
"gulp-nodemon": "^2.2.1"
}
}