-
-
Notifications
You must be signed in to change notification settings - Fork 66
/
package.json
69 lines (69 loc) · 2.26 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
64
65
66
67
68
69
{
"name": "aurelia-dependency-injection",
"version": "1.6.1",
"description": "A lightweight, extensible dependency injection container for JavaScript.",
"keywords": [
"aurelia",
"di",
"dependency injection",
"ioc"
],
"homepage": "http://aurelia.io",
"bugs": {
"url": "https://github.com/aurelia/dependency-injection/issues"
},
"license": "MIT",
"author": "Rob Eisenberg <[email protected]> (http://robeisenberg.com/)",
"main": "dist/commonjs/aurelia-dependency-injection.js",
"module": "dist/native-modules/aurelia-dependency-injection.js",
"typings": "dist/aurelia-dependency-injection.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/aurelia/dependency-injection"
},
"files": [
"dist",
"doc",
"src",
"typings.json",
"README.md",
"LICENSE"
],
"scripts": {
"lint": "oxlint -A no-new-array",
"test": "bun test --preload=\"./test/setup.ts\" --coverage",
"test:watch": "npm run test -- --watch",
"develop": "concurrently \"npm run build -- --watch\" \"npm run test:watch\"",
"prebuild": "cross-env rimraf dist",
"build": "rollup -c --environment NODE_ENV:production",
"postbuild": "npm run build:dts",
"build:dts": "dts-bundle-generator ./src/aurelia-dependency-injection.ts -o dist/aurelia-dependency-injection.d.ts",
"doc": "typedoc --options typedoc.json",
"postdoc": "rimraf doc/typedoc",
"precut-release": "npm run test && npm run lint && npm run build",
"cut-release": "commit-and-tag-version -t \"\" -i doc/CHANGELOG.md --skip.commit --skip.tag",
"postcut-release": " npm run doc"
},
"dependencies": {
"aurelia-metadata": "^1.0.0",
"aurelia-pal": "^1.0.0"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.6",
"@types/bun": "^1.1.6",
"@types/node": "^20.14.15",
"aurelia-polyfills": "^1.3.0",
"bun": "^1.1.22",
"commit-and-tag-version": "12.4.1",
"concurrently": "^8.2.2",
"conventional-changelog-cli": "^5.0.0",
"cross-env": "^7.0.3",
"dts-bundle-generator": "^9.5.1",
"oxlint": "^0.7.0",
"rimraf": "^6.0.1",
"rollup": "^4.20.0",
"tslib": "^2.6.3",
"typedoc": "^0.26.5",
"typescript": "5.5.4"
}
}