-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.7 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 1.7 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
{
"name": "@ournet/api-client",
"version": "0.4.2",
"description": "Ournet api client",
"main": "./lib/index.js",
"types": "./types/index.d.ts",
"scripts": {
"pretest": "npm run clean && npm run tsc",
"test": "ava --no-cache --verbose lib/**/*.test.js",
"posttest": "npm run clean-test-code",
"tsc": "tsc",
"tscw": "tsc -w",
"preversion": "npm run tsc",
"postversion": "git push --follow-tags",
"prepublishOnly": "npm run tsc && npm run clean-test-code",
"clean": "rimraf ./lib && rimraf ./types",
"clean-test-code": "rimraf ./lib/**/*.test.js && rimraf ./types/**/*.test.d.ts",
"generate-schema": "apollo-codegen introspect-schema http://localhost:41806/graphql --output schema.json",
"generate-types": "node ./lib/scripts/generate-types.js",
"generate-api": "node ./lib/scripts/generate-api.js",
"generate": "yarn generate-schema && yarn generate-types && yarn generate-api && yarn clean && yarn tsc"
},
"engines": {
"node": ">=4.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ournet/api-client.git"
},
"keywords": [
"ournet",
"api-client"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/ournet/api-client/issues"
},
"homepage": "https://github.com/ournet/api-client#readme",
"devDependencies": {
"@types/lru-cache": "^4.1.1",
"@types/node": "10.12.7",
"@types/node-fetch": "^2.1.2",
"apollo-codegen": "^0.20.2",
"ava": "^0.25.0",
"debug": "^4.1.0",
"rimraf": "^2.6.2",
"typescript": "3.1.6"
},
"dependencies": {
"lru-cache": "^5.1.1",
"node-fetch": "^2.3.0"
}
}