-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.68 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
{
"name": "spotify-player",
"version": "1.0.0",
"description": "Spotify Player to use the Spotify Wrapper Library",
"main": "index.js",
"scripts": {
"lint": "./node_modules/.bin/eslint src/*.js",
"start": "./node_modules/.bin/webpack-dev-server",
"dev": "./node_modules/.bin/webpack --progress",
"build": "NODE_ENV=production ./node_modules/.bin/webpack --progress",
"watch": "npm run build -- --watch",
"prepush": "npm run lint && 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": {
"functions": 80,
"lines": 80,
"check-coverage": true,
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/nunofreitasbotelho/spotify-player.git"
},
"keywords": [
"js",
"tdd",
"library"
],
"author": "Nuno Freitas Botelho <[email protected]>",
"license": "MIT",
"devDependencies": {
"babel-core": "^6.25.0",
"babel-loader": "^7.1.1",
"babel-preset-env": "^1.5.2",
"babel-register": "^6.24.1",
"chai": "^4.0.2",
"eslint": "^4.18.2",
"eslint-config-airbnb-base": "^11.2.0",
"eslint-plugin-chai-friendly": "^0.3.6",
"eslint-plugin-import": "^2.6.1",
"husky": "^0.14.1",
"jsdom": "^11.1.0",
"jsdom-global": "^3.0.2",
"mocha": "^3.4.2",
"nyc": "^11.0.3",
"webpack": "^3.0.0",
"webpack-dev-server": "^2.5.0"
},
"dependencies": {
"spotify-wrapper-nfb": "^1.0.3"
}
}