-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
68 lines (68 loc) · 1.64 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
{
"name": "@lancercomet/vue2-jsx-runtime",
"version": "0.6.0",
"description": "JSX runtime for Vue 2.",
"files": [
"dist/",
"jsx-runtime.js",
"jsx-runtime.mjs",
"jsx-dev-runtime.js",
"README.md"
],
"main": "jsx-runtime.js",
"module": "jsx-runtime.mjs",
"scripts": {
"build": "rollup -c",
"lint": "eslint ./lib/**",
"test": "jest",
"push": "npm run build && npm run test && npm publish",
"prebuild": "npm run lint",
"preversion": "npm run build && npm run test",
"postbuild": "node ./post-build.js"
},
"author": {
"name": "LancerComet",
"email": "[email protected]"
},
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/LancerComet/vue2-jsx-runtime.git"
},
"peerDependencies": {
"vue": "2"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^22.0.0",
"@types/jest": "^27.0.3",
"@typescript-eslint/eslint-plugin": "^5.7.0",
"@typescript-eslint/parser": "^5.7.0",
"@vue/composition-api": "^1.6.1",
"@vue/test-utils": "^1.3.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",
"rollup": "^2.61.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-typescript2": "^0.31.1",
"ts-jest": "^27.1.2",
"tslib": "^2.4.0",
"typescript": "^4.5.4",
"typescript-formatter": "^7.2.2",
"vue": "^2.6.14"
},
"dependencies": {
"change-case": "^4.1.2"
},
"typesVersions": {
"*": {
"*": [
"*",
"dist/*"
]
}
}
}