This repository has been archived by the owner on Nov 14, 2017. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.5 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
{
"name": "absinthe-phoenix",
"version": "0.1.1",
"main": "./pkg/dist/index.js",
"typings": [
"./pkg/dist/index.d.ts",
"./pkg/dist/index.types.d.ts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/absinthe-graphql/absinthe-phoenix-js.git"
},
"keywords": [
"graphql",
"absinthe",
"elixir",
"phoenix",
"subscriptions"
],
"author": "Bruce Williams <[email protected]>",
"contributors": [
"Ben Wilson <[email protected]>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/absinthe-graphql/absinthe-phoenix-js/issues"
},
"homepage": "https://github.com/absinthe-graphql/absinthe-phoenix-js",
"scripts": {
"bundle": "./node_modules/.bin/rollup -c",
"compile": "./node_modules/.bin/tsc -d",
"compile:browser": "./node_modules/.bin/webpack --config \"./unpkg-webpack.config.js\"",
"minify:browser": "./node_modules/.bin/uglifyjs -c -m -o ./pkg/lib/browser/index.min.js -- ./pkg/lib/browser/index.js",
"package": "./scripts/package.sh",
"publish": "./scripts/publish.sh",
"prepublish": "npm run package",
"clean": "rm -fR ./pkg",
"precompile": "npm run clean && rm -rf node_modules/@types/async"
},
"devDependencies": {
"rollup": "^0.45.1",
"typescript": "^2.3.2",
"uglify-js": "^3.0.24",
"webpack": "^3.2.0"
},
"dependencies": {
"absinthe-phoenix": "^0.1.1",
"graphql-tag": "^2.4.2",
"persistgraphql": "^0.3.2",
"subscriptions-transport-ws": "^0.8.1"
}
}