-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.39 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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "micro-js-client",
"version": "0.0.3",
"description": "Micro JS Client",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"src",
"types"
],
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"dev": "tsc-watch server.ts --outDir ./local --onSuccess \"node ./local/server.js\"",
"test": "jest",
"test:watch": "jest --watch"
},
"license": "Apache-2.0",
"author": "Asim Aslam <[email protected]>",
"keywords": [
"typescript",
"node"
],
"repository": {
"type": "git",
"url": "git+https://github.com/micro/micro-js.git"
},
"devDependencies": {
"@types/chance": "^1.1.3",
"@types/express": "^4.17.13",
"@types/jest": "^27.0.1",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"chance": "^1.1.7",
"eslint": "^7.32.0",
"express": "^4.17.1",
"jest": "^27.0.6",
"rxjs": "^5.5.2",
"ts-jest": "^27.0.5",
"tsc-watch": "^4.4.0",
"typescript": "^4.3.5",
"zone.js": "^0.8.14"
},
"dependencies": {
"@types/ws": "^7.2.2",
"axios": "^0.21.1",
"body-parser": "^1.19.0",
"dotenv": "^10.0.0",
"jsonfile": "^6.1.0",
"ws": "^7.2.3"
},
"bugs": {
"url": "https://github.com/micro/micro-js/issues"
},
"homepage": "https://github.com/micro/micro-js#readme",
"directories": {
"lib": "lib"
}
}