-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.76 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.76 KB
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
61
62
63
64
65
66
67
68
69
{
"name": "innet",
"version": "2.1.1",
"description": "CANT inc. application build ecosystem.",
"main": "index.js",
"module": "index.es6.js",
"jsnext:main": "index.es6.js",
"types": "index.d.ts",
"private": true,
"scripts": {
"build": "innetjs release",
"patch": "innetjs patch",
"minor": "innetjs minor",
"major": "innetjs major",
"release": "innetjs release -p",
"test": "jest",
"test:coverage": "jest --coverage",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix"
},
"repository": {
"type": "git",
"url": "https://github.com/d8corp/innet.git"
},
"keywords": [
"CANTinc.",
"ecosystem",
"JavaScript",
"Typescript",
"front-end",
"back-end",
"JS",
"TS",
"native",
"mobile",
"ios",
"android"
],
"author": "Mikhail Lysikov <d8corp@mail.ru>",
"license": "MIT",
"bugs": {
"url": "https://github.com/d8corp/innet/issues"
},
"homepage": "https://github.com/d8corp/innet",
"devDependencies": {
"@types/jest": "^29.5.1",
"@types/node": "^20.1.0",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"core-js": "^3.30.1",
"eslint": "^8.40.0",
"eslint-config-standard": "^17.0.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-config-standard-jsx": "^11.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"eslint-plugin-unused-imports": "^4.1.4",
"innet-jest": "^1.3.5",
"innetjs": "^2.5.3",
"jest": "^29.5.0",
"jest-util": "^29.5.0",
"typescript": "^5.9.3"
},
"dependencies": {
"queue-nano-task": "^1.0.0"
}
}