forked from justinkames/vuejs-logger
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.04 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
{
"name": "vuejs-logger",
"author": "Justin Kames, keep2zero",
"version": "1.0.0",
"description": "Vuejs-logger, provides customizable logging functionality for Vue.js.",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/keep2zero/vuejs-logger.git"
},
"scripts": {
"test": "istanbul cover _mocha -- --compilers js:babel-core/register -R spec --debug",
"upload-coverage": "codecov -t $CODECOV_TOKEN",
"transpile": "node_modules/babel-cli/bin/babel.js src --out-dir dist && node_modules/uglify-js/bin/uglifyjs dist/logger.js -c -m -o dist/logger.js",
"prepublish": "npm test && npm run transpile"
},
"license": "MIT",
"babel": {
"presets": [
"es2015"
]
},
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-loader": "7.1.1",
"babel-preset-es2015": "6.24.1",
"chai": "4.1.0",
"codecov": "2.2.0",
"istanbul": "1.1.0-alpha.1",
"mocha": "3.4.2",
"uglify": "0.1.5",
"vue": "2.4.1"
},
"dependencies": {}
}