-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
47 lines (47 loc) · 1.32 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
{
"name": "shirow",
"version": "1.0.6",
"description": "Shirow is an implementation of a distinctive concept of a remote procedure call.",
"source": "client/index.ts",
"main": "dist/index.js",
"homepage": "https://github.com/tolstoyevsky/shirow",
"author": "CusDeb Team",
"maintainer": {
"name": "Denis Gavrilyuk",
"email": "[email protected]"
},
"files": [
"client",
"dist"
],
"license": "Apache-2.0",
"scripts": {
"build": "parcel build",
"prepublishOnly": "npm run build",
"lint": "eslint ./client/*.ts && tsc --noemit",
"pretest": "npm run lint",
"test": "echo \"Warning: no test specified\""
},
"repository": {
"type": "git",
"url": "https://github.com/tolstoyevsky/shirow.git"
},
"devDependencies": {
"@babel/preset-env": "^7.15.8",
"@babel/preset-typescript": "^7.15.0",
"@parcel/packager-ts": "^2.0.0-rc.0",
"@parcel/transformer-typescript-types": "^2.0.0-rc.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.1.1",
"parcel": "^2.0.0-rc.0",
"typescript": "^4.2.4"
},
"dependencies": {
"events": "^3.3.0"
}
}