This repository has been archived by the owner on Jan 7, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
121 lines (121 loc) · 3.37 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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "@maidsafe/safe-node-app",
"version": "0.11.1",
"description": "A safe_app library for Node.js",
"license": "(MIT OR BSD-3-Clause)",
"main": "src/index.js",
"scripts": {
"lint": "eslint src test",
"fix-lint": "eslint --fix src test",
"postinstall": "download_deps --package package.json",
"docs": "rimraf docs/ && jsdoc -c jsdoc.json",
"test": "cross-env NODE_ENV=test mocha --recursive",
"test-coverage": "cross-env NODE_ENV=test istanbul cover _mocha --report lcovonly -- -R spec --recursive test",
"publish-coverage": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"pre-pack": "npm run lint",
"prepush": "npm run lint && cross-env NODE_ENV=dev npm run test",
"prepublishOnly": "npm run lint && npm run test",
"release": "standard-version"
},
"standard-version": {
"skip": {
"tag": true
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/maidsafe/safe_app_nodejs.git"
},
"author": {
"name": "MaidSafe",
"email": "[email protected]",
"url": "https://github.com/maidsafe"
},
"bugs": {
"url": "https://github.com/maidsafe/safe_app_nodejs/issues"
},
"homepage": "https://github.com/maidsafe/safe_app_nodejs#readme",
"files": [
"install-dev-libs.js",
"yarn.lock",
"src/*.js",
"src/api/*.js",
"src/api/emulations/*.js",
"src/native/*.js"
],
"dependencies": {
"cids": "bochaco/js-cid#temp-use-bochaco-multicodec",
"cross-env": "5.1.3",
"deps_downloader": "https://s3.eu-west-2.amazonaws.com/deps-downloader/deps_downloader-0.3.0.tgz",
"enum": "^2.3.0",
"ffi": "^2.3.0",
"mime": "^2.0.3",
"multihashes": "^0.4.14",
"rdflib": "^0.19.1",
"ref": "^1.3.3",
"ref-array": "^1.2.0",
"ref-struct": "^1.1.0",
"weak-napi": "1.0.3"
},
"devDependencies": {
"braintree-jsdoc-template": "^3.3.0",
"coveralls": "^2.13.0",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.0.0",
"eslint-plugin-import": "^2.2.0",
"husky": "^0.14.3",
"istanbul": "1.1.0-alpha.1",
"jsdoc": "^3.5.5",
"jsdoc-escape-at": "^1.0.1",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"rimraf": "^2.6.2",
"should": "^11.1.2",
"standard-version": "^5.0.2"
},
"download_deps": {
"system_uri": {
"mirror": "https://s3.eu-west-2.amazonaws.com/system-uri",
"version": "v0.4.0",
"targetDir": "src/native/prod",
"filePattern": "^.*\\.(dll|so|dylib)$",
"filename": "system_uri"
},
"safe_app": {
"mirror": "https://s3.eu-west-2.amazonaws.com/safe-client-libs",
"version": "0.9.1",
"targetDir": "src/native/prod",
"filename": "safe_app",
"filePattern": "^.*\\.(dll|so|dylib)$",
"force": true
},
"ENV": {
"dev": {
"safe_app": {
"targetDir": "src/native/mock",
"filename": "safe_app-mock",
"override": false
},
"system_uri": {
"targetDir": "src/native/mock",
"override": false
}
},
"mobile_prod": {
"system_uri": {
"disabled": true
}
},
"mobile_dev": {
"system_uri": {
"disabled": true
},
"safe_app": {
"targetDir": "src/native/mock",
"filename": "safe_app-mock",
"override": false
}
}
}
}
}