forked from maidsafe-archive/safe_app_nodejs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 2.69 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
81
82
83
84
85
86
87
88
89
90
{
"name": "@maidsafe/safe-node-app",
"version": "0.2.2",
"description": "",
"main": "src/index.js",
"scripts": {
"lint": "eslint src test",
"fix-lint": "eslint --fix src test",
"postinstall": "download_deps --package package.json",
"docs": "documentation build --config etc/documentation.yml --github true --output docs --format html src/**",
"serve-docs": "documentation serve --config etc/documentation.yml --github true --output docs --format html src/**",
"test": "mocha",
"test-coverage": "istanbul cover _mocha --report lcovonly -- -R spec",
"publish-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"pre-pack": "yarn run lint",
"prepush": "yarn run test && yarn run lint",
"prepublish": "yarn run test && yarn run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/maidsafe/safe_app_nodejs.git"
},
"author": {
"name": "MaidSafe",
"email": "qa@maidsafe.net",
"url": "https://github.com/maidsafe"
},
"bugs": {
"url": "https://github.com/maidsafe/safe_app_nodejs/issues"
},
"homepage": "https://github.com/maidsafe/safe_app_nodejs#readme",
"dependencies": {
"deps_downloader": "https://s3.eu-west-2.amazonaws.com/deps-downloader/deps_downloader-0.1.0.tgz",
"enum": "^2.3.0",
"ffi": "^2.2.0",
"ref": "^1.3.3",
"ref-array": "^1.2.0",
"ref-struct": "^1.1.0",
"weak": "^1.0.1"
},
"devDependencies": {
"coveralls": "^2.13.0",
"documentation": "^5.0.0",
"eslint": "^3.12.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.14.3",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"should": "^11.1.2"
},
"download_deps": {
"system_uri": {
"mirror": "https://s3.eu-west-2.amazonaws.com/system-uri",
"version": "v0.2.0",
"targetDir": "src/native",
"filePattern": "^.*\\.(dll|so|dylib)$"
},
"safe_app": {
"mirror": "https://s3.eu-west-2.amazonaws.com/safe-client-libs",
"version": "v0.3.3",
"targetDir": "src/native",
"filename": "safe_app",
"filePattern": "^.*\\.(dll|so|dylib)$",
"force": true
},
"ENV": {
"dev": {
"safe_app": {
"filename": "safe_app-mock"
}
},
"nightly": {
"safe_app": {
"filename": "safe_app-nightly"
}
},
"win32": {
"libwinpthread-1": {
"mirror": "https://s3.eu-west-2.amazonaws.com/libwinpthread",
"version": "v0.1.0",
"targetDir": "src/native",
"filePattern": "^libwinpthread-1.dll$"
}
}
}
}
}