-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 999 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
{
"name": "minit-service",
"version": "1.0.0",
"description": "Docker image with HTTP REST endpoints for running minit commands on a given file system.",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/montagestudio/minit-service.git"
},
"engines": {
"node": "4.8.x",
"npm": "2.15.x"
},
"scripts": {
"lint": "eslint .",
"build": "docker build -t minit-service .",
"build:test": "npm run build && docker build -t minit-service-test -f Dockerfile.test .",
"test": "npm run build:test && docker run minit-service-test",
"doc": "concurrently 'http-server -p 28824' 'open http://localhost:28824/doc'"
},
"devDependencies": {
"chai": "^4.1.2",
"concurrently": "^3.5.1",
"doc": "0.0.3",
"eslint": "^4.19.1",
"http-server": "^0.11.1",
"supertest": "^3.1.0"
},
"dependencies": {
"body-parser": "^1.18.3",
"cors": "^2.8.4",
"express": "^4.16.3",
"minit": "^0.5.8"
}
}