-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "low-cal-storage",
"version": "1.0.4",
"description": "A lightweight wrapper around window.localStorage that slims down your data for storage and fattens it up again on retrieval",
"main": "index.js",
"bugs": "https://github.com/AlexJPotter/low-cal-storage/issues",
"scripts": {
"build": "webpack --env build",
"dev": "webpack --progress --colors --watch --env dev",
"test": "mocha --compilers js:babel-core/register --colors ./test/*.spec.js && eslint \"src/**\"",
"test:watch": "mocha --compilers js:babel-core/register --colors -w ./test/*.spec.js",
"lint": "eslint \"src/**\" \"test/**\"",
"lintfix": "eslint \"src/**\" \"test/**\" --fix"
},
"keywords": [
"localstorage",
"optimize",
"optimise",
"local",
"storage"
],
"author": "Alex J Potter",
"license": "MIT",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-eslint": "7.2.3",
"babel-loader": "7.1.1",
"babel-plugin-add-module-exports": "0.2.1",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-env": "^1.6.0",
"chai": "4.1.0",
"eslint": "4.3.0",
"eslint-loader": "1.9.0",
"mocha": "3.5.0",
"mock-local-storage": "1.0.4",
"webpack": "3.4.1",
"yargs": "8.0.2"
}
}