-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.52 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
56
{
"name": "graphql-aws-iot-server",
"version": "0.0.1",
"description": "Serverless graphql transport for graphql queries mutations and subascriptions",
"author": "Girish Nanda <[email protected]>",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"test:dev": "jest --watch",
"test:manager": "jest tests/manager.test.ts --watch",
"test:publisher": "jest tests/publisher.test.ts --watch",
"lint": "tslint src/**/*",
"prebuild": "rimraf dist && mkdir -p dist",
"build": "tsc",
"prepublishOnly": "npm run lint && npm run test && npm run build",
"gen:docs": "typedoc --out documentation"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ioxe/graphql-aws-iot-server.git"
},
\ "license": "MIT",
"bugs": {
"url": "https://github.com/ioxe/graphql-aws-iot-server/issues"
},
"homepage": "https://github.com/ioxe/graphql-aws-iot-server#readme",
"license": "MIT",
"devDependencies": {
"@types/graphql": "^0.10.2",
"@types/jest": "^20.0.8",
"@types/node": "^8.0.25",
"aws-sdk": "^2.107.0",
"graphql": "^0.11.2",
"jest": "^21.0.1",
"tslint": "^5.7.0",
"typedoc": "^0.8.0",
"typescript": "^2.4.2"
},
"peerDependencies": {
"graphql": "^0.11.2"
},
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "<rootDir>/preprocessor.js"
},
"testMatch": [
"**/tests/*.test.(ts|tsx|js)"
]
}
}