-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.54 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.54 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
{
"name": "@ovotech/apollo-datasource-soap",
"version": "4.0.0",
"description": "SOAPDataSource is responsible for fetching data using soap",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"source": "src/index.ts",
"types": "dist/types/index.d.ts",
"repository": "git@github.com:ovotech/apollo-datasource-soap.git",
"author": "Ivan Kerin <ikerin@gmail.com>",
"license": "Apache-2.0",
"scripts": {
"test": "jest",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"build-cjs": "tsc --outDir dist/cjs/",
"build-es": "tsc --outDir dist/es/ --module esnext --declaration --declarationDir dist/types/",
"build": "yarn build-cjs && yarn build-es"
},
"peerDependencies": {
"soap": "*"
},
"dependencies": {
"apollo-datasource": "^0.2.2",
"apollo-server-caching": "^0.2.2",
"apollo-server-errors": "^2.2.0",
"apollo-server-types": "^0.2.1"
},
"devDependencies": {
"@types/jest": "23.3.3",
"@types/node": "^10.11.4",
"@types/soap": "^0.21.0",
"graphql": "^14.0.2",
"jest": "^23.6.0",
"jest-junit": "^3.6.0",
"prettier": "^1.12.0",
"soap": "^0.25.0",
"ts-jest": "^23.6.0",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.1"
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testURL": "http://localhost/"
}
}