-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 1.08 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
{
"name": "dynamic-module-importer",
"version": "1.1.2",
"description": "Allows you to import multiple modules into your node script",
"main": "main.js",
"scripts": {
"deploy": "npm publish",
"test": "exit 0",
"run:js": "nodemon main.js",
"run:ts": "tsc -w main.ts",
"debugfile1": "cd ./modules/ && tsc test1.ts",
"debugfile2": "cd ./modules/ && tsc test2.ts",
"debugfile3": "cd ./modules/ && tsc test3.ts",
"start": "concurrently --kill-others-on-fail \"npm:debugfile1\" \"npm:debugfile2\" \"npm:debugfile3\" \"npm:run:ts\" \"npm:run:js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/EvanHendersonRichtByte/dynamic-module-importer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/EvanHendersonRichtByte/dynamic-module-importer/issues"
},
"homepage": "https://github.com/EvanHendersonRichtByte/dynamic-module-importer#readme",
"devDependencies": {
"@types/node": "^17.0.15",
"concurrently": "^7.0.0",
"nodemon": "^2.0.15",
"typescript": "^4.5.5"
}
}