-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.19 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
52
53
54
55
56
57
58
59
60
{
"name": "pythonic",
"version": "2.0.3",
"description": "Python like utility functions for JS: `range`, `enumerate`, `zip` and `items`.",
"main": "index.js",
"scripts": {
"lint": "xo",
"test": "ava && npm run lint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/assister-ai/pythonic.git"
},
"files": [
"index.js"
],
"keywords": [
"python",
"util",
"utility",
"utilities",
"es6",
"client",
"server",
"browser"
],
"author": "Keyvan Mir Mohammad Sadeghi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/assister-ai/pythonic/issues"
},
"homepage": "https://github.com/assister-ai/pythonic#readme",
"devDependencies": {
"ava": "^1.3.1",
"xo": "^0.24.0"
},
"engines": {
"node": ">=10"
},
"xo": {
"space": 4,
"rules": {
"unicorn/prefer-spread": 0,
"no-await-in-loop": 0,
"ava/no-async-fn-without-await": 0,
"prefer-destructuring": [
"error",
{
"AssignmentExpression": {
"array": true,
"object": false
}
}
]
},
"envs": [
"node"
]
}
}