-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.95 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
{
"name": "vue-cycle",
"version": "0.1.2",
"description": "Cycle.js integration for Vue components",
"main": "./dist/index.js",
"types": "./src/index.d.ts",
"scripts": {
"doc": "markdox -o README.md src/index.ts src/mixins/dom.ts src/mixins/run.ts src/directives/dom.ts src/methods/fromCustomEvent.ts src/methods/watchProp.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "standard src/**.ts",
"lint:fix": "standard src/**.ts",
"dist": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TimurKiyivinski/vue-cycle.git"
},
"keywords": [
"vue",
"cycle",
"streams",
"xstream",
"rxjs"
],
"author": "Timur Kiyui",
"license": "MIT",
"bugs": {
"url": "https://github.com/TimurKiyivinski/vue-cycle/issues"
},
"homepage": "https://github.com/TimurKiyivinski/vue-cycle#readme",
"jest": {
"transform": {
"^.+\\.js$": "<rootDir>/node_modules/babel-jest",
"^.+\\.ts$": "<rootDir>/node_modules/ts-jest",
"^.+\\.vue$": "<rootDir>/node_modules/vue-jest"
},
"testMatch": [
"<rootDir>/src/tests/**.test.js"
],
"moduleFileExtensions": [
"json",
"ts",
"js",
"vue"
],
"testURL": "http://localhost"
},
"standard": {
"parser": "typescript-eslint-parser",
"plugins": [
"typescript"
]
},
"dependencies": {
"@cycle/run": "^4.4.0",
"vue": "^2.5.17",
"xstream": "^11.7.0"
},
"devDependencies": {
"@cycle/time": "^0.12.0",
"@vue/test-utils": "^1.0.0-beta.25",
"babel-core": "^6.26.3",
"babel-jest": "^22.4.4",
"babel-preset-env": "^1.7.0",
"eslint-plugin-typescript": "^0.8.1",
"jest": "^22.4.4",
"markdox": "^0.1.10",
"standard": "^10.0.3",
"ts-jest": "^22.4.6",
"typescript": "^2.9.2",
"typescript-eslint-parser": "^12.0.0",
"vue-jest": "^1.4.0",
"vue-template-compiler": "^2.5.17"
}
}