-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
126 lines (126 loc) · 3.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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "graphbrainz-extension-spotify",
"version": "0.3.0",
"description": "Spotify GraphQL extension for GraphBrainz.",
"keywords": [
"graphbrainz",
"extension",
"musicbrainz",
"graphql",
"spotify"
],
"homepage": "https://github.com/exogen/graphbrainz-extension-spotify",
"author": {
"name": "Brian Beck",
"email": "[email protected]",
"url": "http://brianbeck.com/"
},
"license": "MIT",
"engines": {
"node": ">=8.10"
},
"main": "lib/index.js",
"files": [
"lib",
"yarn.lock"
],
"scripts": {
"build": "npm run build:lib && npm run build:docs",
"build:docs": "babel-node scripts/build-docs.js",
"build:lib": "babel --out-dir lib src",
"clean": "rimraf lib",
"deploy": "git push heroku master",
"format": "npm run lint:fix",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"precommit": "lint-staged",
"prepare": "npm run clean && npm run build",
"start": "node scripts/start.js",
"start:dev": "nodemon --exec babel-node scripts/start-dev.js",
"test": "npm run lint && npm run test:coverage",
"test:cache": "cross-env NOCK_MODE=cache ava --concurrency 1 --update-snapshots",
"test:coverage": "cross-env NODE_ENV=test nyc npm run test:only",
"test:live": "cross-env NOCK_MODE=live ava --concurrency 1",
"test:only": "ava",
"test:preview": "cross-env NOCK_MODE=preview ava --concurrency 1",
"test:record": "cross-env NOCK_MODE=record ava --concurrency 1 --update-snapshots"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"ava": {
"babel": "inherit",
"require": [
"dotenv/config",
"babel-register"
],
"files": [
"src/**/*.test.js",
"test"
]
},
"ava-nock": {
"pathFilter": [
"([?&](key|secret)=)([^&]*)",
"$1*"
]
},
"nyc": {
"include": [
"src/**"
],
"reporter": [
"lcov",
"text"
],
"all": true,
"cache": true,
"sourceMap": false,
"instrument": false
},
"peerDependencies": {
"graphbrainz": "^8.0.3"
},
"dependencies": {
"dataloader": "^1.4.0",
"debug": "^3.1.0",
"graphql-relay": "^0.5.5",
"lodash.chunk": "^4.2.0",
"lodash.maxby": "^4.6.0",
"lru-cache": "^4.1.3",
"qs": "^6.5.2"
},
"devDependencies": {
"ava": "^0.25.0",
"ava-nock": "^1.0.0",
"babel-cli": "^6.26.0",
"babel-plugin-istanbul": "^4.1.6",
"babel-plugin-syntax-object-rest-spread": "^6.13.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"coveralls": "^3.0.2",
"cross-env": "^5.2.0",
"dotenv": "^6.0.0",
"eslint": "^5.3.0",
"eslint-config-prettier": "^3.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-prettier": "^2.6.2",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"glob": "^7.1.2",
"graphbrainz": "^8.0.3",
"graphql": "^0.13.2",
"graphql-markdown": "^4.1.0",
"husky": "^0.14.3",
"lint-staged": "^7.2.0",
"nodemon": "^1.18.3",
"nyc": "^12.0.2",
"prettier": "^1.14.0",
"rimraf": "^2.6.2"
}
}