-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
71 lines (71 loc) · 2.09 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
67
68
69
70
71
{
"name": "vue-global-var",
"version": "1.0.0",
"author": "mudin",
"description": "Reactive global variable can be sharable between components",
"keywords": [
"vue",
"vuex",
"reactive",
"global-variable",
"share"
],
"license": "MIT",
"main": "dist/vue-global-var.cjs.js",
"module": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"homepage": "https://github.com/mudin/vue-global-var",
"bugs": {
"url": "https://github.com/mudin/vue-global-var/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mudin/vue-global-var.git"
},
"scripts": {
"clean": "rm -rf lib dist .tmp",
"build": "run-s build:ts build:cjs build:dev build:prod",
"build:ts": "tsc -p src",
"build:cjs": "rollup -c scripts/rollup.config.js --environment BUILD:commonjs",
"build:dev": "rollup -c scripts/rollup.config.js --environment BUILD:development",
"build:prod": "rollup -c scripts/rollup.config.js --environment BUILD:production | uglifyjs -mc warnings=false --comments -o dist/vue-global-var.min.js",
"watch:test": "webpack --watch --config scripts/webpack.config.test.js",
"lint": "tslint \"src/**/*.ts\" && tslint \"test/**/*.ts\"",
"testem": "testem",
"dev": "run-p watch:test testem",
"test": "webpack --config scripts/webpack.config.test.js && testem ci --launch PhantomJS"
},
"devDependencies": {
"@types/mocha": "^5.2.0",
"@types/power-assert": "1.5.0",
"@types/sinon": "^4.3.3",
"es6-promise": "^4.2.4",
"glob": "^7.1.2",
"json-loader": "^0.5.7",
"npm-run-all": "^4.1.3",
"power-assert": "^1.5.0",
"rollup": "^0.58.2",
"rollup-plugin-replace": "^2.0.0",
"sinon": "^5.0.7",
"testem": "^2.4.0",
"ts-loader": "^4.3.0",
"tslint": "^5.10.0",
"tslint-config-ktsn": "^2.1.0",
"typescript": "^2.8.3",
"uglify-js": "^3.3.25",
"webpack": "^4.8.3",
"webpack-cli": "^3.2.3",
"webpack-espower-loader": "^2.0.0"
},
"dependencies": {
"vue": "^2.6.6",
"vuex": "^3.1.0"
},
"directories": {
"lib": "lib"
}
}