-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 739 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 739 Bytes
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
{
"name": "automaton-server",
"version": "1.5.0-b",
"type": "module",
"description": "",
"main": "dist/AutomatonServer.js",
"types": "dist/AutomatonServer.d.ts",
"scripts": {
"test": "c8 mocha './test/**/*.js'",
"start": "node example",
"debug": "node --inspect example",
"build": "tsc",
"dev": "tsc --watch"
},
"author": "",
"license": "ISC",
"dependencies": {
"busboy": "^1.6.0",
"node-fetch": "^3.1.1"
},
"devDependencies": {
"@types/busboy": "^1.5.0",
"@types/node": "^17.0.45",
"@types/node-fetch": "^2.5.10",
"babel-eslint": "^10.1.0",
"c8": "^7.1.0",
"eslint": "^7.0.0",
"mocha": "^9.2.0",
"nodemon": "^2.0.4",
"pre-commit": "^1.2.2",
"typescript": "^4.5.5"
},
"prepublish": "tsc"
}