-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.58 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": "spotify-wrapper",
"version": "1.0.0",
"description": "A wrapper to work with the Spotify Web API.",
"main": "index.js",
"scripts": {
"clear": "rimraf lib",
"build": "npm run clear && ./node_modules/.bin/babel --out-dir lib src",
"build:watch": "npm run build -- --watch",
"lint": "./node_modules/.bin/eslint src/*.js",
"prepush": "npm run test:coverage",
"test": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register",
"test:tdd": "./node_modules/.bin/mocha tests/**/*.spec.js --require babel-register --watch",
"test:coverage": "nyc npm test"
},
"nyc": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/rluisb/spotify-wrapper.git"
},
"keywords": [
"nodejs",
"spotify",
"wrapper",
"tdd"
],
"author": "Ricardo Conceição <ricardo220893@gmail.com> (https://github.com/rluisb)",
"license": "MIT",
"bugs": {
"url": "https://github.com/rluisb/spotify-wrapper/issues"
},
"homepage": "https://github.com/rluisb/spotify-wrapper#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"eslint": "^6.1.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.18.2",
"husky": "^3.0.2",
"mocha": "^6.2.0",
"node-fetch": "^2.6.0",
"nyc": "^14.1.1",
"rimraf": "^2.6.3",
"sinon": "^7.3.2",
"sinon-chai": "^3.3.0",
"sinon-stub-promise": "^4.0.0"
}
}