-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.99 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.99 KB
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": "vue-di",
"version": "0.22.0",
"repository": {
"type": "git",
"url": "github.com/david-driscoll/vue-di"
},
"description": "Dependency injection for Vue using a derived Aurelia container",
"main": "cjs/src/index.js",
"module": "src/index.js",
"browser": "",
"types": "src/index.d.ts",
"scripts": {
"build": "webpack && npm run build:ts",
"build:ts": "tsc -p ./tsconfig.json && tsc -p ./tsconfig.cjs.json",
"test": "npm run build:ts && mocha --config ./test/.mocharc.js",
"prettier": "prettier **/*.ts --write",
"lint": "tslint -p tsconfig.json --fix"
},
"author": "David Driscoll",
"license": "MIT",
"peerDependencies": {
"reflect-metadata": "^0.1.12",
"ts-disposables": "^2.2.3"
},
"devDependencies": {
"@nuxt/vue-app": "^2.14.11",
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.2.0",
"@types/node": "^14.14.12",
"@types/sinon": "^9.0.9",
"@types/sinon-chai": "^3.2.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"dts-bundle": "^0.7.3",
"esm": "^3.2.25",
"jsdom": "^16.4.0",
"jsdom-global": "^3.0.2",
"lodash": "^4.17.20",
"mocha": "^8.2.1",
"path-browserify": "^1.0.1",
"prettier": "^2.2.1",
"reflect-metadata": "^0.1.13",
"sinon": "^9.2.2",
"sinon-chai": "^3.5.0",
"ts-disposables": "^2.2.3",
"ts-loader": "^8.0.12",
"ts-node": "^9.1.1",
"tslib": "^2.0.3",
"tslint": "^6.1.3",
"typescript": "^4.1.2",
"vue": "^2.6.12",
"vue-class-component": "^7.2.6",
"vue-property-decorator": "^9.1.2",
"vue-template-compiler": "^2.6.12",
"vue-test-utils": "^1.0.0-beta.9",
"vuex": "^3.6.0",
"vuex-module-decorators": "^1.0.1",
"webpack": "^5.10.0",
"webpack-cli": "^4.2.0"
}
}