forked from happybeing/safenetworkjs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 2.06 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
{
"name": "safenetworkjs",
"version": "0.0.1",
"description": "SAFE Network API for NodeJS and Web",
"author": "theWebalyst",
"license": "GPL-3.0",
"main": "src/index.js",
"browser": "src/index-web.js",
"engines": {
"node": ">=8.15.0"
},
"scripts": {
"test": "echo No tests yet!",
"doc": "jsdoc src -r -d docs || true",
"build": "webpack --mode production --verbose --colors --config webpack.config.js",
"builddev": "webpack --mode development --verbose --colors --config webpack.config.js",
"builddevsac": "webpack --mode development --verbose --colors --config webpack.config.js && cp -v ./dist/* ~/src/solid/solid-auth-client/src && cp -v ./dist/* ~/src/solid/solid-plume-sac/js/ && cp -v ./dist/* ~/src/solid/solid-auth-client-test/src",
"dev": "webpack --watch --mode development --verbose --colors --config webpack.config.js",
"buildsac": "webpack --mode production --verbose --colors --config webpack.config.js && cp -v ./dist/* ~/src/solid/solid-auth-client/src && cp -v ./dist/* ~/src/solid/solid-plume-sac/js/ && cp -v ./dist/* ~/src/solid/solid-auth-client-test/src"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thewebalyst/safenetworkjs.git"
},
"dependencies": {
"@maidsafe/safe-node-app": "^0.11.1",
"debug": "^4.1.1",
"detect-node": "^2.0.4",
"fast-text-encoding": "^1.0.0",
"http-link-header": "^1.0.2",
"isomorphic-fetch": "^2.2.1",
"mime-types": "^2.1.22",
"node-ipc": "^9.1.1",
"path": "^0.12.7",
"proto-fetch": "^1.0.0",
"rdflib": "^0.20.1",
"solid-namespace": "^0.2.0",
"string": "^3.3.3"
},
"bugs": {
"url": "https://github.com/theWebalyst/safenetworkjs/issues"
},
"homepage": "https://github.com/theWebalyst/safenetworkjs#readme",
"keywords": [
"SAFEnetwork",
"decentralised",
"p2p",
"api"
],
"devDependencies": {
"@babel/core": "^7.3.3",
"babel": "^6.23.0",
"babel-loader": "^8.0.5",
"copy-webpack-plugin": "^5.0.0",
"jsdoc": "^3.5.5",
"webpack": "^4.29.5",
"webpack-cli": "^3.2.3"
}
}