forked from softvar/secure-ls
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.87 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
{
"name": "secure-ls",
"version": "1.2.8",
"description": "Secure localStorage data with high level of encryption and data compression",
"main": "./dist/secure-ls.js",
"typings": "./dist/secure-ls.d.ts",
"scripts": {
"build": "webpack --mode=build",
"build-dev": "webpack --mode=dev",
"build-test": "mocha -r mock-local-storage --compilers js:babel-core/register --colors ./test/library.spec.js",
"dev": "webpack --progress --colors --watch --mode=dev",
"test": "mocha -r mock-local-storage --compilers js:babel-core/register --colors -w ./test/library.spec.js",
"coverage": "node node_modules/.bin/istanbul cover _mocha -- -r mock-local-storage --compilers js:babel-core/register -R spec ./test/library.spec.js",
"coveralls": "cat ./coverage/lcov.info | node node_modules/.bin/coveralls"
},
"devDependencies": {
"@types/crypto-js": "^3.1.43",
"@types/lz-string": "^1.3.32",
"babel": "6.3.13",
"babel-core": "6.1.18",
"babel-eslint": "5.0.0",
"babel-loader": "6.1.0",
"babel-plugin-add-module-exports": "0.1.2",
"babel-preset-es2015": "6.3.13",
"chai": "3.4.1",
"coveralls": "^2.11.16",
"eslint": "1.7.2",
"eslint-loader": "1.1.0",
"istanbul": "1.0.0-alpha.2",
"mocha": "2.3.4",
"mock-local-storage": "^1.0.2",
"sinon": "^1.17.4",
"sinon-chai": "^2.8.0",
"webpack": "1.12.9",
"yargs": "3.32.0"
},
"repository": {
"type": "git",
"url": "https://github.com/softvar/secure-ls.git"
},
"keywords": [
"secure-ls",
"localStorage",
"encryption",
"compression",
"webpack",
"es6",
"umd",
"commonjs"
],
"author": "Varun Malhotra",
"license": "MIT",
"bugs": {
"url": "https://github.com/softvar/secure-ls/issues"
},
"homepage": "https://github.com/softvar/secure-ls",
"dependencies": {
"crypto-js": "^3.1.6",
"lz-string": "^1.4.4"
}
}