-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
54 lines (54 loc) · 1.35 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
{
"name": "@soluzioni-futura/components-container",
"version": "1.2.2",
"description": "Easy and clean way to manage async and sync components in simple and complex projects.",
"main": "./index.js",
"types": "./dist/Container.d.ts",
"scripts": {
"test": "npm run build && DEBUG=* node ./test/index.js",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/soluzionifutura/components-container.git"
},
"keywords": [
"component",
"components",
"container",
"initialization",
"async",
"init",
"client",
"sdk",
"configurations",
"setup"
],
"author": {
"name": "Giovanni Bruno",
"email": "[email protected]",
"url": "https://github.com/giowe"
},
"contributors": [
{
"name": "Nicolò Fuccella",
"email": "[email protected]",
"url": "https://github.com/nicofuccella"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/soluzionifutura/components-container/issues"
},
"homepage": "https://github.com/soluzionifutura/components-container#readme",
"devDependencies": {
"@soluzioni-futura/eslint-config-soluzioni-futura": "^1.1.0",
"eslint": "^7.2.0",
"typescript": "^3.9.5"
},
"dependencies": {
"debug": "^4.1.1",
"@types/debug": "^4.1.5",
"@types/node": "^14.0.13"
}
}