-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
68 lines (68 loc) · 2.23 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
{
"name": "vuex-local",
"version": "0.2.0",
"author": "katashin",
"description": "Local state management within Vuex",
"keywords": [
"local",
"state",
"management",
"Vue",
"Vuex"
],
"license": "MIT",
"main": "dist/vuex-local.cjs.js",
"jsnext:main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"dist",
"lib"
],
"homepage": "https://github.com/ktsn/vuex-local",
"bugs": "https://github.com/ktsn/vuex-local/issues",
"repository": {
"type": "git",
"url": "https://github.com/ktsn/vuex-local.git"
},
"scripts": {
"prepublishOnly": "npm run build",
"clean": "rm -rf dist .tmp lib",
"build": "run-s build:ts build:cjs build:dev build:prod",
"build:ts": "tsc -p . --outDir lib",
"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/vuex-local.min.js",
"watch:test": "webpack --watch --config scripts/webpack.config.test.js",
"example": "npm run build:ts && webpack-dev-server --config scripts/webpack.config.example.js --hot --no-info",
"testem": "testem",
"lint": "tslint \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "tslint --fix \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "run-p watch:test testem",
"test:ci": "webpack --config scripts/webpack.config.test.js && testem ci --launch PhantomJS"
},
"devDependencies": {
"@types/mocha": "^2.2.46",
"@types/power-assert": "1.4.29",
"buble": "^0.18.0",
"buble-loader": "^0.4.1",
"css-loader": "^0.28.8",
"es6-promise": "^4.2.2",
"glob": "^7.1.2",
"npm-run-all": "^4.1.2",
"power-assert": "^1.4.4",
"rollup": "^0.53.3",
"rollup-plugin-replace": "^2.0.0",
"testem": "^1.18.4",
"ts-loader": "^3.2.0",
"tslint": "^5.8.0",
"tslint-config-ktsn": "^2.1.0",
"typescript": "^2.6.2",
"vue": "^2.5.13",
"vue-loader": "^13.7.0",
"vue-template-compiler": "^2.5.13",
"vuex": "^3.0.1",
"webpack": "^3.10.0",
"webpack-dev-server": "~2.9.0",
"webpack-espower-loader": "^1.0.2"
}
}