forked from graphprotocol/graph-tooling
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.59 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
{
"name": "@graphprotocol/graph-cli",
"version": "0.23.0",
"description": "CLI for building for and deploying to The Graph",
"dependencies": {
"assemblyscript": "0.19.10",
"binary-install-raw": "0.0.13",
"chalk": "^3.0.0",
"chokidar": "^3.0.2",
"debug": "^4.1.1",
"docker-compose": "^0.23.2",
"dockerode": "^2.5.8",
"fs-extra": "^9.0.0",
"glob": "^7.1.2",
"gluegun": "^4.3.1",
"graphql": "^15.5.0",
"immutable": "^3.8.2",
"ipfs-http-client": "^34.0.0",
"jayson": "^3.0.2",
"js-yaml": "^3.13.1",
"node-fetch": "^2.3.0",
"pkginfo": "^0.4.1",
"prettier": "^1.13.5",
"request": "^2.88.0",
"semver": "7.3.5",
"tmp-promise": "^3.0.2",
"which": "2.0.2",
"yaml": "^1.5.1"
},
"bin": {
"graph": "bin/graph"
},
"devDependencies": {
"eslint": "^6.0.1",
"jest": "^26.0.0",
"spawn-command": "^0.0.2-1",
"strip-ansi": "^6.0.0",
"tern": "^0.24.0"
},
"scripts": {
"test": "jest --verbose",
"test:init": "jest tests/cli/init.test.js --verbose",
"test:validation": "jest tests/cli/validation.test.js --verbose",
"release:patch": "npm version patch && npm publish && git push origin master && git push --tags",
"release:minor": "npm version minor && npm publish && git push origin master && git push --tags",
"release:alpha:minor": "npm version preminor --preid alpha && npm publish --tag alpha && git push origin master && git push --tags",
"release:alpha:prerelease": "npm version prerelease --preid alpha && npm publish --tag alpha && git push origin master && git push --tags"
}
}