-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
33 lines (33 loc) · 959 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
32
33
{
"name": "graphql-relay",
"version": "0.4.1",
"private": true,
"main": "index.js",
"scripts": {
"test": "dotnet test src/GraphQL.Relay.Test",
"pack": "rimraf nuget/* && dotnet pack src/GraphQL.Relay -o nuget -c Release --include-source --include-symbols",
"version": "node tools/version",
"release": "npm run test && npm run pack && cd nuget && nuget push *.symbols.nupkg -s https://www.nuget.org/api/v2/package"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphql-dotnet/relay.git"
},
"author": "Jason Quense",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphql-dotnet/relay/issues"
},
"homepage": "https://github.com/graphql-dotnet/relay#readme",
"devDependencies": {
"chalk": "^1.1.3",
"lodash": "^4.17.19",
"rimraf": "^2.5.4",
"semver": "^5.3.0",
"shells": "^2.0.0",
"yargs": "^6.4.0"
},
"dependencies": {
"fs-extra": "^4.0.1"
}
}