-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.8 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
{
"name": "spotify-player",
"version": "1.0.0",
"description": "A Spotify player using spotify-wrapper",
"main": "lib/index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint src/*.js",
"prepush": "npm run lint",
"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",
"start": "./node_modules/.bin/webpack-dev-server --open"
},
"files": [
"dist",
"lib"
],
"nyc": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/gabriel-hahn/spotify-player.git"
},
"keywords": [
"js",
"tdd",
"library"
],
"author": "Gabriel Hahn Schaeffer <gabriel_hahn@hotmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/gabriel-hahn/spotify-player/issues"
},
"homepage": "https://github.com/gabriel-hahn/spotify-player#readme",
"dependencies": {
"react": "^16.4.2",
"react-dom": "^16.4.2",
"spotify-wrapper-web": "^1.0.1"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-loader": "^7.0.0",
"babel-preset-env": "^1.3.2",
"babel-register": "^6.26.0",
"chai": "3.5.0",
"coveralls": "^2.13.0",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^13.0.0",
"eslint-plugin-import": "^2.13.0",
"husky": "0.11.9",
"jsdom": "^12.0.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.5.3",
"node-fetch": "^1.6.3",
"nyc": "^10.2.0",
"rimraf": "^2.6.1",
"sinon": "2.1.0",
"sinon-chai": "^3.2.0",
"sinon-stub-promise": "^4.0.0",
"webpack": "4.2.0",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.6"
}
}