-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 984 Bytes
/
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
{
"name": "metadata-dao",
"version": "1.0.0",
"description": "An IPFS database API managed by an Aragon DAO that curates Ethereum contract metadata",
"main": "index.js",
"scripts": {
"build": "npm run index",
"prepublishOnly": "npm run build",
"index": "scripts/index --all",
"index:tokens": "scripts/index --db tokens",
"index:radspec": "scripts/index --db radspec",
"publish": "aragon apm publish patch --only-content --files build",
"publish:mainnet": "npm run publish -- --environment mainnet",
"publish:rinkeby": "npm run publish -- --environment rinkeby",
"publish:staging": "npm run publish -- --environment staging"
},
"author": "Aragon Association",
"license": "GPL-3.0",
"dependencies": {
"js-sha3": "^0.8.0",
"mkdirp": "^0.5.1",
"ncp": "^2.0.0",
"rimraf": "^2.6.3",
"yargs": "^13.1.0"
},
"devDependencies": {
"@aragon/cli": "5.2.3",
"@aragon/os": "^4.0.1",
"radspec": "^1.1.5"
}
}