-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.47 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
{
"name": "graphem",
"version": "2.0.4",
"description": "Connector to integrate GraphQL to NASA OpenMCT in queries and subscriptions",
"main": "src/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"scripts": {
"clean": "rimraf ./dist ./node_modules ./package-lock.json",
"publish:update": "npm run lint && npm publish --access public",
"format": "prettier --write .",
"build": "npm run format && rimraf dist && tsc && rollup -c rollup.config.js",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"lint": "tslint -p tsconfig.json"
},
"keywords": [
"GraphQL",
"Plugin",
"GraphQL Subscriptions",
"NASA",
"NASA Open MCT"
],
"homepage": "https://www.graphem.space/",
"bugs": {
"url": "https://github.com/360macky/graphem/issues"
},
"author": {
"name": "Marcelo Arias",
"email": "[email protected]",
"url": "https://marceloarias.com"
},
"devDependencies": {
"@open-wc/building-rollup": "^2.0.2",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"rollup": "^2.79.0",
"rollup-plugin-commonjs": "^10.1.0",
"rollup-plugin-node-resolve": "^5.2.0",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.8.3"
},
"dependencies": {
"graphql": "16.6.0",
"graphql-ws": "5.11.1"
},
"repository": {
"type": "git",
"url": "https://github.com/360macky/graphem"
},
"license": "Apache-2.0"
}