This repository has been archived by the owner on Oct 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.23 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
{
"name": "sico-vue-helpers",
"version": "1.0.1",
"description": "Transaction and Vue.js helper. Add Transaction Model and AJAX helper",
"author": "Silver Connection",
"license": "MIT",
"keywords": [
"transaction",
"ajax",
"vue"
],
"main": "dist/sico.vue-helpers.cjs.js",
"module": "dist/sico.vue-helpers.es.js",
"browser": "dist/sico.vue-helpers.umd.js",
"typings": "types/main.d.ts",
"files": [
"docs",
"src",
"dist",
"types"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Silver-Connection/sico-vue-helpers.git"
},
"bugs": {
"url": "https://github.com/Silver-Connection/sico-vue-helpers/issues"
},
"dependencies": {
"jquery": "^3.3.1",
"bootstrap-notify": "^3.1.3",
"vue": "^2.5.16"
},
"devDependencies": {
"@types/jquery": "^3.3.1",
"@types/jest": "^22.2.0",
"@types/sinon": "^4.3.0",
"@types/bootstrap-notify": "^3.1.33",
"rollup": "^0.57.1",
"rollup-plugin-alias": "^1.4.0",
"rollup-plugin-babel": "^3.0.3",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-flow-no-whitespace": "^1.0.0",
"rollup-plugin-node-resolve": "^3.3.0",
"jest": "^22.4.2",
"sinon": "^4.4.6",
"shelljs": "^0.8.1",
"ts-jest": "^22.4.2",
"tslint": "^5.9.1",
"typescript": "^2.7.2",
"vue-server-renderer": "^2.5.16"
},
"scripts": {
"clean": "rm -rf src/*.js src/*/*.js src/*.js.map src/*/*.js.map types/* dist/*",
"test": "tsc && jest",
"build": "tsc && jest && rollup -c"
},
"jest": {
"globals": {
"tsConfigFile": "tsconfig.json"
},
"moduleFileExtensions": [
"ts",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "./node_modules/ts-jest/preprocessor.js"
},
"testMatch": [
"**/test/**/*.test.(ts|js)"
],
"testEnvironment": "jsdom",
"setupFiles": [
"./test/jest-setup.js"
]
},
"engines": {
"yarn": ">= 1.0.0"
}
}