-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 936 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "tscn",
"version": "1.1.3",
"description": "TypeScript execution environment for node.js",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && tsc",
"test": "node dist/index.js ./server/test.ts -w",
"clean": "rimraf dist",
"dev": "npm run clean && tsc && npm run test"
},
"bin": {
"tscn": "dist/index.js"
},
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git@github.com:marioa5945/tscn.git"
},
"keywords": [
"typescript",
"node",
"ts",
"tsc"
],
"author": {
"name": "mario a",
"email": "marioa5945@gmail.com",
"url": "https://marioa5945.github.io"
},
"license": "ISC",
"peerDependencies": {
"typescript": ">=2.7"
},
"devDependencies": {
"@types/node": "^14.14.16",
"rimraf": "^3.0.2",
"typescript": "^4.1.3"
},
"dependencies": {
"arg": "^5.0.0",
"chokidar": "^3.5.0"
}
}