forked from padloc/padloc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
69 lines (69 loc) · 1.98 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": "padlock",
"version": "2.4.2",
"description": "A minimalist password manager",
"author": "Martin Kleinschrodt <[email protected]>",
"license": "GPL-3.0",
"homepage": "https://padlock.io/",
"repository": {
"type": "git",
"url": "git+https://github.com/maklesoft/padlock.git"
},
"main": "main.js",
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/core-js": "^0.9.35",
"@types/mocha": "^2.2.33",
"@types/papaparse": "^4.1.28",
"@types/semver": "^5.3.33",
"@types/sjcl": "^1.0.27",
"archiver": "^1.2.0",
"bower": "^1.8.0",
"browserify": "^13.1.1",
"chai": "^4.0.2",
"core-js": "^2.4.1",
"crisper": "^2.1.1",
"electron": "^1.6.10",
"electron-builder": "^19.49.0",
"eslint": "^4.0.0",
"eslint-plugin-html": "^3.0.0",
"estraverse": "^4.2.0",
"fs-extra": "^1.0.0",
"gulp": "^3.9.1",
"gulp-insert-lines": "0.0.4",
"js-yaml": "^3.8.4",
"karma": "^1.7.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.1.1",
"karma-mocha": "^1.3.0",
"mocha": "^3.4.2",
"papaparse": "^4.1.2",
"polymer-analyzer": "^2.2.0",
"polymer-bundler": "^2.3.1",
"rimraf": "^2.5.4",
"semver": "^5.4.1",
"sjcl": "^1.0.7",
"st": "^1.2.0",
"tsify": "^2.0.3",
"typescript": "^2.1.4",
"vinyl-source-stream": "^1.1.0",
"watchify": "^3.7.0"
},
"dependencies": {
"electron-store": "^1.1.0",
"electron-updater": "^2.17.6",
"uuid": "^3.1.0",
"yargs": "^4.8.1"
},
"scripts": {
"bower-install": "pushd app && bower install && popd",
"compile": "gulp compile --silent",
"lint": "eslint app/**/*.{js,html}",
"test": "karma start --single-run --browsers ChromeHeadless karma.conf.js",
"app": "electron .",
"build:mac": "gulp build --mac --silent",
"build:win": "gulp build --win --silent",
"build:linux": "gulp build --linux --silent",
"postinstall": "npm run bower-install && npm run compile && mkdir -p cordova/www"
}
}