-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.7 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
{
"name": "@systerdyster/webpack-lib-vue",
"version": "1.0.0",
"scripts": {
"clean": "rimraf dist/*",
"start": "npm run clean && webpack --mode development",
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} mocha --opts ./mocha.opts 'src/**/__tests__/*.spec.ts'",
"test:cover": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} nyc mocha --opts ./mocha.opts 'src/**/__tests__/*.spec.ts'",
"version": "npm-check --update"
},
"author": "Fredrik Gärdin",
"license": "MIT",
"repository": {
"url": "https://github.com/systerdyster/webpack-lib-vue",
"type": "git"
},
"module": "./dist/index.js",
"types": "./src/index.d.ts",
"files": [
"./src/**",
"./dist/**"
],
"devDependencies": {
"cross-env": "^6.0.3",
"css-loader": "^3.2.0",
"file-loader": "^4.2.0",
"html-loader": "^0.5.5",
"jsdom": "^15.2.0",
"jsdom-global": "^3.0.2",
"mini-css-extract-plugin": "^0.8.0",
"mocha": "^6.2.2",
"node-sass": "^4.13.0",
"npm-check": "^5.9.0",
"nyc": "^14.1.1",
"pug-html-loader": "^1.1.5",
"rimraf": "^3.0.0",
"sass-loader": "^8.0.0",
"style-loader": "^1.0.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.4.1",
"tsconfig-paths": "^3.9.0",
"tslint": "^5.20.0",
"typescript": "^3.6.4",
"vue": "^2.6.10",
"vue-class-component": "^7.1.0",
"vue-property-decorator": "^8.3.0",
"webpack": "^4.41.2",
"webpack-cli": "^3.3.9"
},
"nyc": {
"include": [
"src/**/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register"
],
"reporter": [
"text"
],
"sourceMap": true,
"instrument": true
}
}