-
Notifications
You must be signed in to change notification settings - Fork 45
/
Copy pathpackage.json
26 lines (26 loc) · 890 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
{
"name": "moleculer-template-project-typescript",
"version": "3.0.0",
"description": "Project template for Moleculer-based projects with typescript",
"main": "meta.js",
"scripts": {
"dev": "rimraf tmp && moleculer init . tmp",
"test": "moleculer init --answers test/ci/answers.json --install . ci-test",
"start": "cd tmp && node node_modules/moleculer/bin/moleculer-runner services"
},
"repository": {
"type": "git",
"url": "git+https://github.com/moleculerjs/moleculer-template-project-typescript.git"
},
"keywords": [],
"author": "MoleculerJS",
"license": "MIT",
"bugs": {
"url": "https://github.com/moleculerjs/moleculer-template-project-typescript/issues"
},
"homepage": "https://github.com/moleculerjs/moleculer-template-project-typescript#readme",
"devDependencies": {
"moleculer-cli": "^0.7.0",
"rimraf": "^3.0.2"
}
}