forked from vuejs/composition-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.22 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "@vue/composition-api",
"version": "0.5.0",
"description": "Provide logic composition capabilities for Vue.",
"keywords": [
"vue",
"composition-api",
"function-api"
],
"repository": {
"type": "git",
"url": "git+https://github.com/vuejs/composition-api.git"
},
"main": "dist/vue-composition-api.js",
"umd:main": "dist/vue-composition-api.umd.js",
"module": "dist/vue-composition-api.module.js",
"typings": "dist/index.d.ts",
"author": {
"name": "liximomo",
"email": "liximomo@gmail.com"
},
"license": "MIT",
"sideEffects": false,
"files": [
"dist/"
],
"scripts": {
"start": "cross-env TARGET=es rollup -c -w",
"build": "rollup -c",
"test": "cross-env NODE_ENV=test jest",
"release": "bash scripts/release.sh"
},
"bugs": {
"url": "https://github.com/vuejs/composition-api/issues"
},
"homepage": "https://github.com/vuejs/composition-api#readme",
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"cross-env": "^5.2.0",
"husky": "^2.7.0",
"jest": "^24.8.0",
"lint-staged": "^8.2.1",
"prettier": "^1.18.2",
"rollup": "^1.12.0",
"rollup-plugin-node-resolve": "^5.0.0",
"rollup-plugin-replace": "^2.2.0",
"rollup-plugin-terser": "^4.0.4",
"rollup-plugin-typescript2": "^0.21.0",
"ts-jest": "^24.0.2",
"typescript": "^3.6.2",
"vue": "^2.5.22",
"vue-router": "^3.1.3",
"vue-server-renderer": "^2.6.10"
},
"peerDependencies": {
"vue": "^2.5.22"
},
"dependencies": {
"tslib": "^1.9.3"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"prettier --write",
"git add"
],
"*.ts": [
"prettier --parser=typescript --write",
"git add"
]
},
"jest": {
"verbose": true,
"setupFiles": [
"<rootDir>/test/setupTest.js"
],
"setupFilesAfterEnv": [
"<rootDir>/test/helpers/wait-for-update.js"
],
"moduleFileExtensions": [
"ts",
"js"
],
"testMatch": [
"<rootDir>/test/**/*.spec.{js,ts}"
],
"preset": "ts-jest"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5"
}
}