forked from asterlibraryjs/aster-js-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.8 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
{
"name": "@aster-js/app",
"version": "2.1.6",
"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",
"demo": "tsc --project samples/spa/tsconfig.json && rollup -c rollup-demo.config.mjs",
"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-app.git"
},
"bugs": {
"url": "https://github.com/asterlibraryjs/aster-js-app/issues"
},
"homepage": "https://github.com/asterlibraryjs/aster-js-app#readme",
"license": "ISC",
"dependencies": {
"@aster-js/async": "^1.4.1",
"@aster-js/collections": "^1.0.3",
"@aster-js/core": "^1.3.1",
"@aster-js/decorators": "^1.1.0",
"@aster-js/dom": "1.1.0",
"@aster-js/events": "^1.3.0",
"@aster-js/ioc": "^1.7.0",
"@aster-js/iterators": "^1.2.2",
"tslib": "^2.6.3"
},
"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.7",
"@types/sinon": "17.0.3",
"chai": "4.3.10",
"karma": "^6.4.3",
"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.7.0",
"puppeteer": "^22.13.1",
"rollup": "^4.19.0",
"rollup-plugin-sourcemaps": "^0.6.3",
"sinon": "18.0.0",
"typescript": "^5.5.4"
},
"author": "sebdoucet"
}