-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
59 lines (59 loc) · 1.25 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
{
"name": "swapi-node",
"version": "0.7.0",
"description": "A Node.js helper library for SWAPI",
"main": "index.js",
"engines": {
"node": ">= 10.14.0"
},
"scripts": {
"test": "nyc tape test/*.js | tap-spec",
"coverage": "nyc npm test",
"lint": "xo",
"coveralls": "nyc npm test && nyc report --reporter=text-lcov | coveralls",
"coverage:html": "nyc npm test && nyc report --reporter=html",
"ci": "npm run lint && npm run coveralls",
"release": "standard-version"
},
"xo": {
"space": 2,
"rules": {
"object-curly-spacing": [
"error",
"always"
],
"unicorn/no-reduce": [
"off"
],
"space-before-function-paren": [
"error",
"always"
]
}
},
"author": {
"name": "Lucas Holmquist",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "[email protected]:salty-pig/swapi-node.git"
},
"keywords": [
"swapi",
"star wars"
],
"license": "BSD",
"devDependencies": {
"coveralls": "3.1.1",
"nock": "12.0.3",
"nyc": "15.1.0",
"standard-version": "9.3.2",
"tap-spec": "^5.0.0",
"tape": "5.3.1",
"xo": "0.45.0"
},
"dependencies": {
"request": "~2.88.0"
}
}