-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.28 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
{
"name": "apollo-server-cache-aerospike",
"version": "0.5.13",
"author": "helipilot50@gmail.com",
"description": "Apollo Server Cache using Aerospike",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/helipilot50/apollo-server-aerospike-cache.git"
},
"homepage": "https://github.com/helipilot50/apollo-server-aerospike-cache#readme",
"bugs": {
"url": "https://github.com/helipilot50/apollo-server-aerospike-cache/issues"
},
"main": "dist/index.js",
"scripts": {
"build": "cp package.json dist/package.json && cp README.md dist/README.md && babel src -d dist --copy-files",
"test": "mocha test/**/*.spec.js --timeout 15000 --exit"
},
"engines": {
"node": ">=10"
},
"keywords": [
"aerospike",
"apollo",
"cache",
"KeyValueCache"
],
"dependencies": {
"@babel/runtime": "^7.6.3",
"aerospike": "^3.11.0",
"apollo-server-caching": "^0.5.0",
"babel-runtime": "^6.26.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.4.0",
"@babel/plugin-transform-runtime": "^7.6.2",
"@babel/preset-env": "^7.6.3",
"chai": "^4.2.0",
"eslint": "^5.12.1",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"mocha": "^5.2.0"
}
}