-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.17 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
{
"name": "@pryv/account-backup",
"description": "Backup your Pryv account",
"version": "0.2.3",
"private": false,
"keywords": [
"Pryv",
"backup",
"app",
"node"
],
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/pryv/pryv-account-backup"
},
"bugs": {
"url": "https://github.com/pryv/pryv-account-backup/issues"
},
"author": {
"name": "Pryv"
},
"scripts": {
"start": "node scripts/start-backup.js",
"restore": "node scripts/start-restore.js",
"test": "mocha test/**/*.test.js",
"test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/./bin/_mocha -- -R spec ./test/**/*.test.js"
},
"contributors": [
{
"name": "Pierre-Mikael Legris (Perki)",
"email": "perki@pryv.com"
}
],
"dependencies": {
"async": "~0.9.0",
"cuid": "^2.1.8",
"JSONStream": "^1.3.4",
"lodash": "^4.17.20",
"mkdirp": "1.0.4",
"nconf": "^0.11.0",
"pryv": "^2.3.3",
"read": "^1.0.7",
"winston": "3.3.3"
},
"devDependencies": {
"mocha": "^10.4.0",
"should": "^11.1.0",
"superagent": "6.1.0"
},
"license": "BSD-3-Clause"
}