-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) 路 1.62 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) 路 1.62 KB
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
56
57
58
59
60
61
62
63
64
{
"name": "graphem",
"version": "2.0.4",
"description": "Connector to integrate GraphQL to NASA OpenMCT in queries and subscriptions",
"main": "dist/index.js",
"type": "commonjs",
"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": "hello@marceloarias.com",
"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"
},
"peerDependencies": {
"openmct": ">=2.1.2"
},
"peerDependenciesMeta": {
"openmct": {
"optional": true
}
},
"repository": {
"type": "git",
"url": "https://github.com/360macky/graphem"
},
"license": "Apache-2.0"
}