-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
68 lines (68 loc) · 1.64 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
{
"name": "neume-network-strategies",
"version": "0.0.1",
"description": "",
"main": "./src/index.mjs",
"scripts": {
"test": "DEBUG=neume-network* ava --verbose --node-arguments=\"-r dotenv/config\"",
"prepare": "husky install",
"prettier": "prettier --write",
"eslint": "eslint . --ext mjs --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/neume-network/strategies.git"
},
"keywords": [
"data",
"music",
"web3",
"decentralized",
"tokens",
"nfts"
],
"author": "Tim Daubenschütz <[email protected]> (https://timdaub.github.io/)",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/neume-network/strategies/issues"
},
"homepage": "https://github.com/neume-network/strategies#readme",
"devDependencies": {
"@neume-network/extraction-worker": "0.7.1",
"ajv": "8.11.0",
"ajv-formats": "2.1.1",
"ava": "4.2.0",
"debug": "4.3.4",
"dotenv": "16.0.1",
"eslint": "8.17.0",
"eslint-config-prettier": "8.5.0",
"husky": "7.0.4",
"lint-staged": "12.3.8",
"prettier": "2.6.2"
},
"lint-staged": {
"*.{mjs,js,css}": [
"npm run prettier",
"npm run eslint"
]
},
"dependencies": {
"@neume-network/schema": "0.8.1",
"lodash.uniqwith": "4.5.0",
"sha3": "2.1.4"
},
"peerDependencies": {
"eth-fun": ">=0.9.1"
},
"ava": {
"files": [
"**/*_test.mjs"
],
"timeout": "30s",
"environmentVariables": {
"IPFS_HTTPS_GATEWAY": "https://cloudflare-ipfs.com/ipfs/",
"IPFS_HTTPS_GATEWAY_KEY": "",
"ARWEAVE_HTTPS_GATEWAY": "https://arweave.net"
}
}
}