-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.27 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
{
"name": "crypticstorage",
"version": "0.0.2",
"description": "Browser & Server compatible encrypted storage",
"keywords": [
"localStorage",
"sessionStorage",
"encryption",
"crypto"
],
"repository": {
"type": "git",
"url": "git+https://github.com/dashhive/CrypticStorage.git"
},
"bugs": {
"url": "https://github.com/dashhive/CrypticStorage/issues"
},
"author": "jojobyte <[email protected]> (https://jojo.io/)",
"license": "MIT",
"main": "index.js",
"files": [
"index.js",
"lib/",
"cryptic.js",
"storage.js"
],
"scripts": {
"start": "npx sirv-cli -D -s --http2 --key ~/localhost.key.pem --cert ~/localhost.pem -p 6443 .",
"lint": "npx -p [email protected] -- tsc -p ./jsconfig.json",
"example:server": "node ./examples/server.js",
"browser-test": "npx mochify@6 --wd -R spec",
"test": "mocha",
"unit": "mocha",
"coverage": "npx [email protected] cover ./node_modules/.bin/_mocha -- --reporter list test/*.js",
"coveralls": "npm run-script coverage && npx coveralls@3 < coverage/lcov.info",
"bump": "npm version -m \"chore(release): bump to v%s\"",
"fmt": "npx -p [email protected] -- prettier -w '**/*.{js,md}'"
},
"devDependencies": {
"mocha": "^10.2.0",
"mocha-lcov-reporter": "0.0.1"
}
}