This repository has been archived by the owner on Aug 4, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
63 lines (63 loc) · 1.49 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
{
"name": "vue-function-api",
"version": "2.0.5",
"description": "Provide logic composition capabilities for Vue.",
"keywords": [
"vue",
"function-api"
],
"main": "dist/vue-function-api.js",
"umd:main": "dist/vue-function-api.umd.js",
"module": "dist/vue-function-api.module.js",
"typings": "dist/index.d.ts",
"author": "liximomo",
"license": "MIT",
"sideEffects": false,
"files": [
"dist/"
],
"scripts": {
"start": "TARGET=es rollup -c -w",
"build": "rollup -c",
"test": "NODE_ENV=test jest",
"prepub": "npm run test && npm run build",
"pub": "npm publish"
},
"bugs": {
"url": "https://github.com/liximomo/vue-function-api/issues"
},
"homepage": "https://github.com/liximomo/vue-function-api#readme",
"devDependencies": {
"@types/jest": "^24.0.13",
"@types/node": "^12.0.2",
"jest": "^24.8.0",
"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",
"typescript": "^3.4.5"
},
"peerDependencies": {
"vue": "^2.0.0"
},
"dependencies": {
"tslib": "^1.9.3"
},
"jest": {
"verbose": true,
"setupFilesAfterEnv": [
"<rootDir>/test/helpers/wait-for-update.js"
],
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.[jt]s$": "<rootDir>/test/tsTransform.js"
},
"testMatch": [
"<rootDir>/test/**/*.spec.js"
]
}
}