-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
69 lines (69 loc) · 1.96 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
67
68
69
{
"name": "cloverleaf-web",
"version": "1.0.0",
"description": "Cloverleaf is a free, open source app to replace your password manager without storing your passwords anywhere.",
"main": "jssource.js",
"scripts": {
"ci-build": "cross-env NODE_ENV=production node config/esbuild/ci-build.js",
"build": "cross-env NODE_ENV=production node config/esbuild/build.js",
"watch": "cross-env NODE_ENV=development node config/esbuild/dev.js",
"server-test": "cd public && npx http-server",
"pytest": "cd unit_tests && python3 -m pytest -s",
"pytest-first": "cd unit_tests && python3 -m pytest -s -x",
"style": "standard"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cloverleaf/web.git"
},
"keywords": [
"password",
"password-manager",
"password-generator",
"security",
"password-vault",
"web-app",
"web-application",
"material"
],
"author": "ChildishGiant",
"license": "MIT",
"bugs": {
"url": "https://github.com/cloverleaf/web/issues"
},
"homepage": "https://github.com/cloverleaf/web#readme",
"dependencies": {
"cloverleaf": "^2.3.0",
"fuse.js": "^6.5.3",
"js-sha3": "^0.8.0",
"material-design-icons-iconfont": "^6.4.1",
"seedrandom": "^3.0.5",
"trim-newlines": "^4.0.2",
"workbox-recipes": "^6.4.2"
},
"devDependencies": {
"autoprefixer": "^10.4.2",
"cross-env": "^7.0.3",
"ejs": "^3.1.6",
"esbuild": "^0.14.23",
"esbuild-plugin-markdown": "^0.0.3",
"eslint": "^7.30.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"essass": "^1.1.0",
"five-server": "^0.1.2",
"fs-extra": "^9.1.0",
"iso-639-1": "^2.1.13",
"node-fetch": "^3.2.0",
"node-stream-zip": "^1.15.0",
"rimraf": "^3.0.2",
"sass": "^1.49.8",
"ssri": "^8.0.1",
"standard": "^16.0.3"
},
"standard": {
"env": "browser"
}
}