-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.54 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.54 KB
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
{
"name": "@unicorns/printer",
"description": "Easy Printing of Remote Images for Vue",
"version": "2.0.0",
"author": "Unicorn Global et al",
"private": false,
"license": "MIT",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"test": "cross-env NODE_ENV=test nyc --reporter=lcov --reporter=text mocha-webpack --webpack-config webpack.config.js --require test/setup.js test/**/*.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/UnicornGlobal/printer"
},
"files": [
"index.js",
"index.js.map"
],
"devDependencies": {
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"@vue/test-utils": "^1.0.0-beta.29",
"ajv": "^6.10.2",
"babel-loader": "^8.0.6",
"babel-plugin-istanbul": "^5.2.0",
"codecov": "^3.5.0",
"cross-env": "^5.2.0",
"eslint": "^6.2.2",
"expect": "^23.6.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdom": "^15.1.1",
"jsdom-global": "^3.0.2",
"mocha": "^6.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"nyc": "^14.1.1",
"sinon": "^7.4.1",
"uglifyjs-webpack-plugin": "^2.0.1",
"vue": "2.6.10",
"vue-loader": "^15.4.2",
"vue-template-compiler": "2.6.10",
"webpack": "^4.39.2",
"webpack-cli": "^3.3.7",
"webpack-node-externals": "^1.7.2"
},
"nyc": {
"include": [
"src/*.vue"
],
"instrument": false,
"check-coverage": true,
"per-file": true,
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": false
}
}