-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "vue-advanced-calculator",
"description": "An advanced scientific calculator for Vue.js",
"version": "0.2.10",
"license": "MIT",
"author": {
"name": "Dimitri Sitchet Tomkeu",
"email": "[email protected]"
},
"main": "dist/vue-advanced-calculator.js",
"files": [
"dist",
"types",
"src"
],
"typings": "types/index.d.ts",
"scripts": {
"serve": "vue-cli-service serve",
"build": "cross-env FULL_BUNDLE=true webpack -p --progress --config webpack.build.config.js"
},
"keywords": [
"vue",
"vuejs",
"calculator",
"converter"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dimtrovich/vue-advanced-calculator.git"
},
"bugs": {
"url": "https://github.com/dimtrovich/vue-advanced-calculator/issues"
},
"homepage": "https://dimtrovich.github.io/vue-advanced-calculator",
"dependencies": {
},
"devDependencies": {
"babel-core": "^6.22.1",
"babel-eslint": "^8.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-istanbul": "^4.1.5",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-2": "^6.22.0",
"babel-register": "^6.22.0",
"@vue/cli-service": "~4.5.15",
"cross-env": "^5.1.1",
"css-loader": "^0.28.8",
"extract-text-webpack-plugin": "^3.0.2",
"vue": "^2.6.11",
"vue-loader": "^13.6.2",
"vue-template-compiler": "^2.6.11",
"webpack": "^3.10.0"
}
}