-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
65 lines (65 loc) · 1.59 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
{
"name": "@vert/core",
"version": "1.2.1",
"description": "Library to build OOP applications which are based on Vue.",
"author": {
"name": "LancerComet",
"email": "chw644@hotmail.com"
},
"repository": {
"url": "https://github.com/vuevert/Vert-Core.git",
"type": "git"
},
"files": [
"dist/",
"doc/",
"README.md"
],
"main": "./dist/index.js",
"module": "./dist/index.esm.js",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "jest",
"predev": "npm run build",
"preversion": "npm test"
},
"peerDependencies": {
"reflect-metadata": "^0.1.13",
"vue": "^2.0.0",
"vue-property-decorator": "^8.0.0"
},
"devDependencies": {
"@types/node": "^16.0.0",
"@types/reflect-metadata": "^0.1.0",
"typescript": "^4.6.4",
"@types/jest": "^27.5.0",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"jest": "^27.4.5",
"jest-useragent-mock": "^0.1.1",
"reflect-metadata": "^0.1.13",
"rollup": "^2.61.1",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.2",
"tslib": "^2.4.0",
"typescript-formatter": "^7.2.2",
"vue": "^2.0.0",
"vue-property-decorator": "^8.0.0"
},
"keywords": [
"Framework",
"Vue",
"Vert",
"ServiceContainer",
"OOP",
"LancerComet"
]
}