-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
80 lines (80 loc) · 2.09 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
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@buttercup/importer",
"version": "3.1.0",
"description": "Buttercup archive importer for other password manager archives",
"main": "dist/index.js",
"scripts": {
"build": "npm run build:node",
"build:node": "babel source --out-dir dist --minified --delete-dir-on-start --verbose",
"dev": "webpack --mode=development --watch --progress",
"docs": "jsdoc2md 'source/**/*.js' > API.md",
"format": "prettier --write '{source,test}/**/*.js'",
"prepublishOnly": "npm run build",
"test": "run-s test:specs test:format",
"test:format": "prettier --check '{source,test}/**/*.js'",
"test:specs": "npm run build && nyc mocha -r test/index.js 'test/specs/**/*.spec.js'"
},
"files": [
"dist/**/*.js",
"*.md"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"{source,test}/**/*.js": [
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/buttercup/buttercup-importer.git"
},
"engines": {
"node": ">= 14"
},
"keywords": [
"buttercup",
"keepass",
"import",
"lastpass",
"1password",
"password",
"bitwarden"
],
"author": "Perry Mitchell <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/buttercup/buttercup-importer/issues"
},
"homepage": "https://github.com/buttercup/buttercup-importer#readme",
"dependencies": {
"csv-parse": "^4.16.3",
"is-dir": "^1.0.0",
"layerr": "^1.0.0",
"typedarray-to-buffer": "^4.0.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/plugin-proposal-object-rest-spread": "^7.20.2",
"@babel/preset-env": "^7.20.2",
"@buttercup/exporter": "^1.1.0",
"buttercup": "^6.16.5",
"chai": "^4.3.7",
"husky": "^4.3.8",
"jsdoc-to-markdown": "^8.0.0",
"lint-staged": "^13.1.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^2.8.1",
"sinon": "^15.0.1"
},
"peerDependencies": {
"buttercup": ">= 6"
}
}