UNPKG

1.45 kBJSONView Raw
1{
2 "name": "@fdosruiz/packetjs",
3 "version": "1.0.6",
4 "description": "Dependency injection container",
5 "main": "lib/index.js",
6 "types": "lib/index.d.ts",
7 "scripts": {
8 "build": "npm run build:js && npm run build:ts",
9 "build:js": "babel src --out-dir lib --extensions '.ts' --ignore '**/*.test.ts' --source-maps inline",
10 "build:ts": "npx tsc --diagnostics --declaration --emitDeclarationOnly --skipLibCheck --outDir lib src/index",
11 "sandbox-ts": "nodemon sandbox/index.ts",
12 "sandbox-lib": "nodemon sandbox/lib.js",
13 "test": "jest"
14 },
15 "author": "Francisco Ruiz",
16 "repository": {
17 "type": "git",
18 "url": "https://github.com/fdosruiz/packetjs.git"
19 },
20 "engines": {
21 "node": ">=6.0.0"
22 },
23 "keywords": [
24 "dependency-injection",
25 "dependency-injection-container",
26 "di",
27 "injection",
28 "dependency",
29 "container",
30 "lazy",
31 "lazy-loading",
32 "javascript",
33 "js",
34 "node",
35 "nodejs",
36 "nodejs",
37 "pimple"
38 ],
39 "license": "MIT",
40 "devDependencies": {
41 "@babel/cli": "^7.18.6",
42 "@babel/core": "^7.18.6",
43 "@babel/preset-env": "^7.18.6",
44 "@babel/preset-typescript": "^7.18.6",
45 "@types/jest": "^28.1.4",
46 "babel-jest": "^28.1.2",
47 "babel-plugin-add-module-exports": "^1.0.4",
48 "core-js": "^3.23.4",
49 "coveralls": "^3.1.1",
50 "jest": "^28.1.2",
51 "nodemon": "^2.0.19",
52 "ts-node": "^10.8.2",
53 "typescript": "^4.7.4"
54 }
55}