-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
80 lines (80 loc) · 2.33 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
{
"name": "socomodule",
"version": "0.0.1",
"description": "A Vue.js component module",
"author": "",
"main": "dist/cjs/socomodule.min.js",
"license": "MIT",
"scripts": {
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
"build": "poi build --format cjs --dist dist/cjs; poi build --format umd --dist dist/umd",
"build:doc": "vue-styleguidist build",
"unit": "jest --config test/unit/jest.conf.js --coverage",
"ccov": "codecov -f test/unit/coverage/coverage-final.json $CODECOV_TOKEN",
"codacy": "cat ./test/unit/coverage/lcov.info | codacy-coverage",
"serve": "vue-styleguidist server",
"e2e": "poi test",
"e2e:watch": "poi test --watch",
"e2e:cov": "poi test --coverage"
},
"keywords": [
"vue",
"component"
],
"files": [
"src/",
"dist/"
],
"dependencies": {
"apollo-boost": "^0.1.6",
"apollo-cache-inmemory": "^1.2.1",
"apollo-client": "^2.3.1",
"apollo-link": "^1.2.2",
"apollo-link-http": "^1.5.4",
"apollo-link-ws": "^1.0.8",
"apollo-utilities": "^1.0.12",
"dom-to-image": "^2.6.0",
"graphql": "^0.13.2",
"graphql-tag": "^2.9.2",
"subscriptions-transport-ws": "^0.9.9",
"unfetch": "^3.0.0",
"vue": "^2.5.3"
},
"devDependencies": {
"@vue/test-utils": "^1.0.0-beta.16",
"babel-plugin-istanbul": "^4.1.1",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.3.2",
"babel-preset-stage-2": "^6.22.0",
"chai": "^4.1.2",
"codacy-coverage": "^3.0.0",
"codecov": "^3.0.1",
"eslint": "^4.11.0",
"eslint-plugin-vue": "beta",
"jest": "^22.4.3",
"jest-junit": "^3.7.0",
"jest-serializer-vue": "^1.0.0",
"karma-chai": "^0.1.0",
"karma-phantomjs-launcher": "^1.0.4",
"karma-phantomjs-shim": "^1.5.0",
"node-glob": "^1.2.0",
"poi": "^9.5.2",
"poi-preset-karma": "^9.2.1",
"ts-jest": "^22.4.6",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"typescript": "^2.6.1",
"vue-jest": "^2.5.0",
"vue-styleguidist": "^1.4.4",
"vue-webpack-loaders": "^1.0.6",
"webpack": "^3.1.0"
},
"jest-junit": {
"suiteName": "Jest unit testing",
"output": "./test/unit/coverage/junit.xml",
"usePathForSuiteName": "true",
"ancestorSeparator": " > ",
"classNameTemplate": "{classname}-{title}",
"titleTemplate": "{title}"
}
}