-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
58 lines (58 loc) · 1.17 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
{
"name": "perspective-api-client",
"version": "3.1.0",
"description": "Client library for the Perspective API",
"license": "MIT",
"repository": "sloria/perspective-api-client",
"author": {
"name": "Steven Loria",
"email": "[email protected]",
"url": "stevenloria.com"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "npm run lint && ava",
"lint": "xo",
"release": "np",
"repl": "local-repl"
},
"files": [
"index.js"
],
"keywords": [
"perspective",
"perspective-api"
],
"dependencies": {
"axios": "^0.21.0",
"lodash": "^4.17.4",
"striptags": "^3.1.1"
},
"devDependencies": {
"ava": "^0.25.0",
"local-repl": "^4.0.0",
"nock": "^10.0.6",
"np": "^7.0.0",
"xo": "^0.23.0"
},
"xo": {
"space": true,
"rules": {
"eqeqeq": 0,
"capitalized-comments": 0,
"operator-linebreak": 0,
"comma-dangle": [
"error",
{
"arrays": "always-multiline",
"objects": "always-multiline",
"imports": "always-multiline",
"exports": "always-multiline",
"functions": "never"
}
]
}
}
}