This repository has been archived by the owner on Apr 9, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
66 lines (66 loc) · 1.92 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
{
"name": "vuex-localstorage",
"version": "1.0.0",
"description": ":dvd: Persist Vuex state with expires by localStorage or some else storage.",
"main": "dist/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"build": "node --harmony ./cli/build",
"lint": "eslint --max-warnings 10 .",
"lint:fix": "npm run lint -- --fix",
"unit": "karma start ./test/unit/runner.js",
"unit:dev": "karma start ./test/unit/runner.js --watch",
"test": "npm run lint && npm run unit",
"release": "bash ./cli/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crossjs/vuex-localstorage.git"
},
"keywords": [
"expires",
"localstorage",
"persist",
"vuex"
],
"author": "crossjs",
"license": "MIT",
"bugs": {
"url": "https://github.com/crossjs/vuex-localstorage/issues"
},
"homepage": "https://github.com/crossjs/vuex-localstorage#readme",
"devDependencies": {
"babel-loader": "^6.2.7",
"babel-plugin-__coverage__": "^11.0.0",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-polyfill": "^6.16.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-0": "^6.16.0",
"babel-register": "^6.18.0",
"chai": "^3.5.0",
"cross-spawn": "^4.0.2",
"eslint": "^3.9.0",
"eslint-config-plato": "^0.0.1",
"eslint-loader": "^1.6.0",
"karma": "^1.3.0",
"karma-coverage": "^1.1.1",
"karma-es6-shim": "^1.0.0",
"karma-mocha": "^1.2.0",
"karma-mocha-reporter": "^2.2.0",
"karma-phantomjs-launcher": "^1.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^1.8.0",
"mocha": "^3.1.2",
"phantomjs-polyfill": "^0.0.2",
"phantomjs-prebuilt": "^2.1.13",
"rollup": "^0.36.3",
"rollup-plugin-buble": "^0.14.0",
"sinon": "^1.17.7",
"sinon-chai": "^2.8.0",
"uglify-js": "^2.7.4",
"vue": "^2.2.6",
"vuex": "^2.2.1",
"webpack": "^1.13.3",
"yargs": "^6.3.0"
}
}