-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.82 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
{
"name": "@syarul/requrse",
"version": "0.2.9",
"type": "module",
"description": "Lightweight driven query language",
"main": "libs/executor.cjs",
"scripts": {
"test:starwars": "node samples/starwars/starwars.test.mjs",
"test:mongoose": "node samples/mongoose/mongoose.test.mjs",
"test:mongoose-lookup": "node samples/mongoose/mongoose-lookup.test.mjs",
"test:redis": "node samples/redis/redis.test.mjs",
"test:requrse": "node test/requrse.test.mjs",
"test:inflight-request-cancelation": "node test/inflightRequestCancelation.test.mjs",
"test:fantasy": "node test/fantasy.test.mjs",
"test:basic": "node test/basic.test.mjs",
"test": "npm run test:starwars && npm run test:mongoose && npm run test:mongoose-lookup && npm run test:redis && npm run test:requrse && npm run test:inflight-request-cancelation && npm run test:fantasy && npm run test:basic",
"test:coverage": "c8 --exclude samples --exclude test npm run test",
"test:lcov": "c8 --exclude samples --exclude test --reporter lcov npm run test",
"coverage": "coveralls < coverage/lcov.info"
},
"repository": {
"type": "git",
"url": "git+https://github.com/syarul/requrse.git"
},
"keywords": [
"GraphQL",
"Query Language",
"CRUD",
"api"
],
"author": "Shahrul Nizam Selamat <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/syarul/requrse/issues"
},
"homepage": "https://github.com/syarul/requrse#readme",
"devDependencies": {
"axios": "^1.5.0",
"c8": "^8.0.1",
"coveralls": "^3.1.1",
"dotenv": "^16.3.1",
"ioredis": "^5.3.2",
"mongoose": "^7.4.1"
},
"dependencies": {
"deep-equal": "^2.2.2"
},
"publishConfig": {
"@syarul:registry": "https://npm.pkg.github.com"
}
}