-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
58 lines (58 loc) · 1.65 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
{
"name": "@aster-js/ioc",
"version": "1.7.1",
"description": "Aster core library part of Aster js library",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prepublishOnly": "npm run build",
"build": "tsc",
"debug": "tsc --project tests/tsconfig.json && rollup -c && karma start karma.debug.js",
"test": "tsc --project tests/tsconfig.json && rollup -c && karma start"
},
"directories": {
"doc": "doc",
"lib": "lib",
"test": "tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/asterlibraryjs/aster-js-ioc.git"
},
"bugs": {
"url": "https://github.com/asterlibraryjs/aster-js-ioc/issues"
},
"homepage": "https://github.com/asterlibraryjs/aster-js-ioc#readme",
"license": "ISC",
"dependencies": {
"tslib": "^2.6.2",
"@aster-js/core": "^1.3.2",
"@aster-js/async": "^1.4.1",
"@aster-js/decorators": "^1.1.0",
"@aster-js/collections": "^1.0.5",
"@aster-js/iterators": "^1.2.3",
"@aster-js/events": "^1.3.0"
},
"devDependencies": {
"@rollup/plugin-alias": "^5.1.0",
"@rollup/plugin-multi-entry": "^6.0.1",
"@rollup/plugin-node-resolve": "^15.2.3",
"@types/chai": "4.3.11",
"@types/mocha": "10.0.6",
"@types/sinon": "17.0.3",
"chai": "4.3.10",
"karma": "^6.4.2",
"karma-chai": "0.1.0",
"karma-chrome-launcher": "3.2.0",
"karma-mocha": "^2.0.1",
"karma-mocha-reporter": "2.2.5",
"karma-sinon": "1.0.5",
"mocha": "^10.2.0",
"puppeteer": "^21.5.2",
"rollup": "^4.6.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"sinon": "17.0.1",
"typescript": "^5.3.3"
},
"author": "sebdoucet"
}