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
72
73
74
75
76
77{
"name": "@noflux/storage",
"version": "0.1.0",
"description": "@noflux/storage",
"main": "dist/noflux-storage.cjs.js",
"module": "dist/noflux-storage.es.js",
"unpkg": "dist/noflux-storage.umd.js",
"scripts": {
"prepublish": "npm run build",
"lint": "eslint *.js src/ test/",
"lint:watch": "esw *.js src/ test/ -w",
"coverage": "npm run ava:coverage",
"ava": "ava test/ --verbose",
"ava:watch": "ava test/ --watch --verbose",
"ava:coverage": "nyc ava test/ --verbose",
"dev": "concurrently -p \"[{name}]\" -n \"lint,ava\" \"npm run lint:watch\" \"npm run ava:watch\"",
"test": "npm run lint && npm run coverage",
"clean": "rimraf dist",
"build": "npm run clean && npm run build:cjs && npm run build:es && npm run build:umd && npm run build:umd-min",
"build:cjs": "cross-env TARGET=cjs rollup -c",
"build:es": "cross-env TARGET=es rollup -c",
"build:umd": "cross-env TARGET=umd rollup -c",
"build:umd-min": "cross-env TARGET=umd NODE_ENV=production rollup -c"
},
"ava": {
"babel": "inherit",
"require": [
"babel-register"
],
"failWithoutAssertions": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/nofluxjs/noflux-storage.git"
},
"keywords": [
"noflux",
"localstorage",
"sessionstorage"
],
"author": "i@malash.me",
"license": "MIT",
"bugs": {
"url": "https://github.com/nofluxjs/noflux-storage/issues"
},
"homepage": "https://github.com/nofluxjs/noflux-storage#readme",
"devDependencies": {
"@noflux/state": "^0.7.0",
"ava": "^0.25.0",
"babel-cli": "^6.26.0",
"babel-eslint": "^8.0.2",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-es2015": "^6.24.0",
"babel-preset-stage-0": "^6.22.0",
"babel-register": "^6.26.0",
"concurrently": "^3.5.0",
"cross-env": "^5.0.5",
"eslint": "^4.6.1",
"eslint-config-airbnb-base": "^12.0.0",
"eslint-plugin-import": "^2.7.0",
"eslint-watch": "^3.1.2",
"mock-local-storage": "^1.0.5",
"nyc": "^11.8.0",
"rimraf": "^2.6.1",
"rollup": "^0.57.1",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^9.1.0",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-node-resolve": "^3.0.0",
"rollup-plugin-replace": "^2.0.0",
"rollup-plugin-uglify": "^3.0.0"
},
"dependencies": {
"jsdom": "^11.11.0"
}
}