-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.91 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
61
62
63
{
"name": "vorarbeiter",
"version": "7.0.1",
"homepage": "https://github.com/slavamuravey/vorarbeiter",
"description": "A simple service container",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.js",
"import": "./es/index.js",
"umd": "./dist/vorarbeiter.umd.min.js"
},
"main": "dist/index.js",
"umd:main": "dist/vorarbeiter.umd.min.js",
"unpkg": "dist/vorarbeiter.umd.min.js",
"module": "es/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:es && npm run build:dist && npm run build:types",
"build:dist": "npm run build:dist:dev && npm run build:dist:prod",
"build:dist:dev": "rollup -c",
"build:dist:prod": "NODE_ENV=production rollup -c",
"build:types": "tsc --project tsconfig.types.json",
"build:es": "tsc --project tsconfig.es.json",
"example": "tsx --tsconfig example/tsconfig.json example/example.ts",
"test": "node --test",
"lint": "eslint {src,example}/**/* ./*.js --ext .js,.ts",
"lint:fix": "npm run lint -- --fix"
},
"keywords": [
"inversion of control",
"service container",
"dependency injection"
],
"author": {
"name": "Viacheslav Muravyev",
"email": "[email protected]",
"url": "https://github.com/slavamuravey/vorarbeiter"
},
"license": "MIT",
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@types/node": "^22.12.0",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^8.57.1",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"eslint-plugin-simple-import-sort": "^12.1.1",
"rollup": "^2.79.2",
"tsx": "^4.19.2",
"typescript": "^5.7.3"
},
"files": [
"README.md",
"LICENSE",
"src",
"es",
"dist"
]
}