-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.76 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.76 KB
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
{
"name": "open-knowledge",
"version": "0.1.0",
"description": "Decentralized linked open data on IPFS",
"author": "Sina Mahmoodi",
"license": "MIT",
"main": "dist/open-knowledge.cjs.js",
"module": "dist/open-knowledge.esm.js",
"browser": "dist/open-knowledge.umd.js",
"repository": {
"type": "git",
"url": "git@github.com:s1na/open-knowledge.git"
},
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"build": "rollup -c",
"dev": "rollup -w -c",
"test": "jest",
"lint": "standard",
"contracts:compile": "truffle compile",
"contracts:test": "truffle test",
"contracts:lint": "solium -d contracts/",
"contracts:deploy": "truffle migrate --reset --compile-all"
},
"dependencies": {
"asynciterator": "^1.1.1",
"cids": "^0.5.3",
"lodash": "^4.17.10",
"n3": "^1.0.0-beta.1",
"openzeppelin-solidity": "^1.10.0",
"sparqljs": "^2.0.3",
"tcr.js": "https://github.com/s1na/tcr.js.git",
"web3": "^1.0.0-beta.35",
"zos-lib": "^1.2.1"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^23.0.1",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-env": "^1.6.1",
"ganache-core": "^2.1.3",
"ipld": "^0.17.2",
"jest": "^22.4.4",
"rollup-plugin-babel": "^3.0.4",
"rollup-plugin-commonjs": "^9.1.3",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.3.0",
"rollup-plugin-re": "^1.0.7",
"solium": "^1.1.7",
"standard": "^11.0.1"
},
"peerDependencies": {
"ipfs": "^0.28.2"
},
"standard": {
"ignore": [
"src/ldf"
],
"envs": [
"mocha",
"jest"
],
"globals": [
"artifacts",
"contract",
"assert"
]
}
}