-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
134 lines (134 loc) · 4.09 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "@wya/vm",
"version": "2.1.0-alpha.15",
"description": "",
"main": "dist/vm.min.js",
"files": [
"src/**",
"dist/**"
],
"scripts": {
"start": "npm run dev",
"dev": "npm run all",
"serve": "rm -rf build/ && cross-env NODE_ENV=development rollup --config rollup.config.js --watch",
"demo": "cd ./examples && npm run dev",
"build": "rm -rf dist/ && cross-env NODE_ENV=production rollup --config rollup.config.js",
"pub": "bash ./scripts/publish.sh",
"lint": "esw ./src --ext .vue,.js --color",
"lint:fix": "npm run lint -- --fix",
"lint:watch": "npm run lint -- --fix --watch",
"all": "npm-run-all --parallel --race --continue-on-error lint:watch serve demo",
"lint-staged": "lint-staged",
"pre-commit:install": "cp .hooks/* .git/hooks/",
"test:common": "cross-env BABEL_ENV=test karma start tests/karma.config.js",
"test": "npm run test:common -- --single-run",
"test:watch": "npm run test:common"
},
"author": "wya-team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wya-team/wya-vm"
},
"bugs": {
"url": "https://github.com/wya-team/wya-vm/issues"
},
"devDependencies": {
"@babel/cli": "^7.15.4",
"@babel/core": "^7.15.5",
"@babel/helper-module-imports": "^7.15.4",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-proposal-decorators": "^7.15.4",
"@babel/plugin-proposal-export-default-from": "^7.14.5",
"@babel/plugin-proposal-export-namespace-from": "^7.14.5",
"@babel/plugin-proposal-function-bind": "^7.14.5",
"@babel/plugin-syntax-dynamic-import": "^7.8.3",
"@babel/plugin-syntax-jsx": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.4",
"@babel/runtime": "^7.15.4",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^20.0.0",
"@rollup/plugin-node-resolve": "^13.0.4",
"@rollup/plugin-replace": "^3.0.0",
"@wya/http": "^1.5.0",
"@wya/ps": "^1.0.2",
"@wya/sass": "^2.0.0",
"@wya/utils": "^1.6.5",
"@wya/vc": "^2.0.26",
"babel-eslint": "^10.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-transform-vue-jsx": "^4.0.1",
"chai": "^4.2.0",
"cross-env": "^5.2.1",
"cssnano": "^4.1.10",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-babel": "^5.3.0",
"eslint-plugin-import": "^2.19.1",
"eslint-plugin-markdown": "^1.0.1",
"eslint-plugin-vue": "^6.0.1",
"eslint-watch": "^6.0.1",
"fs-extra": "^7.0.1",
"husky": "^4.2.3",
"karma": "^4.4.1",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.1",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"lint-staged": "^8.2.1",
"lodash": "^4.17.15",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5",
"postcss-nested": "^4.1.2",
"postcss-preset-env": "^6.7.0",
"postcss-simple-vars": "^5.0.2",
"progress-bar-webpack-plugin": "^1.12.1",
"prompt": "^1.0.0",
"rimraf": "^2.7.1",
"rollup": "^2.56.3",
"rollup-plugin-postcss": "^3.1.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-vue": "^5.1.9",
"sass": "^1.39.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.3.0",
"vue": "^2.6.14",
"vue-loader": "^15.9.8",
"vue-template-compiler": "^2.6.14",
"webpack": "~4.41.1",
"webpack-bundle-analyzer": "^3.0.3",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-merge": "^4.2.2",
"webpack-node-externals": "^1.7.2"
},
"peerDependencies": {
"@babel/runtime": ">=7.0.0",
"@wya/http": "^1.2.0",
"@wya/ps": "^1.0.2",
"@wya/sass": "^1.1.10",
"@wya/utils": "^1.5.1",
"@wya/vc": "^2.0.0",
"vue": ">=2.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "node ./scripts/commit-lint"
}
},
"lint-staged": {
"src/**/*.{js,jsx}": [
"esw --fix",
"git add"
],
"*.md": [
"esw --ext '.md' --fix",
"git add"
]
}
}