-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 834 Bytes
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 834 Bytes
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
{
"name": "nancy",
"version": "0.0.1",
"description": "How JavaScript Promise works",
"main": "index.js",
"scripts": {
"lint": "xo",
"test": "ava && xo"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assister-ai/nancy.git"
},
"keywords": [
"promise",
"async",
"node",
"browser"
],
"author": "Keyvan M. Sadeghi <keyvan.m.sadeghi@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/assister-ai/nancy/issues"
},
"homepage": "https://github.com/assister-ai/nancy#readme",
"devDependencies": {
"async-counter": "^1.0.0",
"ava": "^1.2.1",
"xo": "^0.24.0"
},
"engines": {
"node": ">=8"
},
"xo": {
"space": 4,
"rules": {
"unicorn/catch-error-name": 0,
"promise/prefer-await-to-then": 0
}
}
}