-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
123 lines (123 loc) · 3.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
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
{
"name": "ts-build-test-standard",
"version": "0.0.1",
"description": "Typescript Build And Test Standard",
"main": "dist/index.umd.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "parallel-webpack --config config/webpack.config.js && tsc -p tsconfig.bundle.json",
"doc": "typedoc -out ./docs ./src --media ./media",
"lint": "eslint \"src/\"",
"test": "npm run test:browser && npm run test:node",
"test:node": "mocha \"test/node/**/*.spec.ts\" \"test/both/**/*.spec.ts\"",
"test:browser": "karma start config/karma.config.js --browsers=ChromeHeadless --single-run",
"test:mochapack": "mochapack -r test/mochapack.js --webpack-config config/webpack.mocha.config.js \"test/node/**/*.spec.ts\" \"test/both/**/*.spec.ts\" ",
"preversion": "npm run test && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bichikim/ts-build-test-standard.git"
},
"engines": {
"node": ">=10"
},
"browserslist": [
"ie >= 10",
"not dead",
"last 2 versions"
],
"keywords": [
"async",
"await",
"promise",
"tiemout"
],
"author": "bichi",
"license": "MIT",
"bugs": {
"url": "https://github.com/bichikim/ts-build-test-standard/issues"
},
"homepage": "https://github.com/bichikim/ts-build-test-standard#readme",
"dependencies": {
"vue": "^2.6.10"
},
"devDependencies": {
"@babel/core": "^7.4.5",
"@babel/plugin-proposal-decorators": "^7.8.3",
"@babel/plugin-proposal-class-properties": "^7.4.0",
"@babel/plugin-proposal-optional-chaining": "^7.7.5",
"@babel/preset-env": "^7.5.5",
"@purtuga/esm-webpack-plugin": "^1.1.1",
"@types/chai": "^4.1.6",
"@types/express": "^4.17.0",
"@types/fs-extra": "^8.0.1",
"@types/lodash": "^4.14.134",
"@types/mocha": "^7.0.2",
"@types/sinon": "^7.0.13",
"@typescript-eslint/eslint-plugin": "^2.3.0",
"@typescript-eslint/parser": "^2.3.0",
"@vue/babel-preset-jsx": "^1.1.0",
"@vue/server-test-utils": "^1.0.0-beta.29",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-typescript-vue": "^1.0.3",
"chai": "^4.2.0",
"clean-css": "^4.2.1",
"codecov": "^3.6.1",
"core-js": "^3.2.1",
"cross-env": "^7.0.2",
"css-loader": "^3.2.0",
"eslint": "^6.4.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-loader": "^3.0.0",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-sort-class-members": "^1.5.0",
"eslint-plugin-vue": "^6.0.0",
"express": "^4.17.1",
"fs-extra": "^8.1.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdom": "^16.2.1",
"jsdom-global": "^3.0.2",
"karma": "^4.1.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^2.1.1",
"karma-firefox-launcher": "^1.2.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^1.3.0",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^4.0.2",
"mocha": "^7.1.0",
"mochapack": "^1.1.11",
"node-mocks-http": "^1.8.0",
"parallel-webpack": "^2.4.0",
"pascalcase": "^1.0.0",
"postcss": "^7.0.21",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"pug-plain-loader": "^1.0.0",
"regenerator-runtime": "^0.13.3",
"sinon": "^9.0.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"ts-loader": "^6.1.2",
"ts-node": "^8.3.0",
"tsconfig-paths": "^3.8.0",
"typescript": "^3.5.2",
"url-loader": "^3.0.0",
"vue-loader": "^15.7.1",
"vue-loader-plugin": "^1.3.0",
"vue-server-renderer": "^2.6.10",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9",
"webpack-merge": "^4.1.4",
"webpack-node-externals": "^1.7.2"
}
}