-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.42 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
{
"name": "vorarbeiter",
"version": "4.2.4",
"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": "npx ts-node --project example/tsconfig.json example/example.ts",
"test": "node --test"
},
"keywords": [
"inversion of control",
"service container",
"dependency injection"
],
"author": {
"name": "Viacheslav Muravyev",
"email": "slavamuravey@mail.ru",
"url": "https://github.com/slavamuravey/vorarbeiter"
},
"license": "MIT",
"devDependencies": {
"rollup": "^2.79.2",
"rollup-plugin-terser": "^7.0.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"files": [
"README.md",
"LICENSE",
"src",
"es",
"dist"
]
}