-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
{
"name": "@unicorns/avatars",
"description": "Easy avatars or initials",
"version": "2.1.1",
"author": "Unicorn Global et al",
"private": false,
"license": "MIT",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"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/avatars"
},
"files": [
"index.js",
"index.js.map"
],
"devDependencies": {
"@babel/core": "^7.6.4",
"@babel/preset-env": "^7.6.3",
"@trust/webcrypto": "^0.9.2",
"@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.6.1",
"cross-env": "^5.2.1",
"css-loader": "^3.1.0",
"eslint": "^6.5.1",
"expect": "^24.8.0",
"file-loader": "^4.1.0",
"istanbul-instrumenter-loader": "^3.0.1",
"jsdom": "^13.2.0",
"jsdom-global": "^3.0.2",
"mocha": "^5.2.0",
"mocha-webpack": "^2.0.0-beta.0",
"nyc": "^14.1.1",
"uglifyjs-webpack-plugin": "^2.2.0",
"vue": "2.5.21",
"vue-loader": "^15.7.1",
"vue-template-compiler": "2.5.21",
"webpack": "^4.41.1",
"webpack-cli": "^3.3.9",
"webpack-dev-server": "^3.8.2",
"webpack-node-externals": "^1.7.2"
},
"nyc": {
"include": [
"src/*.vue"
],
"instrument": false,
"check-coverage": true,
"per-file": true,
"reporter": [
"lcov",
"text-summary"
],
"sourceMap": false
}
}