-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.06 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
{
"name": "nnb-spotify-wrapper",
"description": "Nozes na Brita spotify wrapper.",
"homepage": "https://github.com/NozesNaBrita/nnb-spotify-wrapper#readme",
"version": "1.0.0",
"main": "lib/index.js",
"author": {
"email": "mauricio@mauriciovieira.net",
"name": "Mauricio Vieira",
"url": "https://mauriciovieira.net/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NozesNaBrita/nnb-spotify-wrapper.git"
},
"bugs": {
"url": "https://github.com/NozesNaBrita/nnb-spotify-wrapper/issues"
},
"keywords": [
"js",
"library",
"tdd"
],
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-loader": "7.1.4",
"babel-preset-env": "1.6.1",
"babel-register": "6.26.0",
"chai": "4.1.2",
"coveralls": "^3.1.0",
"eslint": "4.19.1",
"eslint-config-airbnb-base": "12.1.0",
"eslint-plugin-import": "2.11.0",
"husky": "0.14.3",
"mocha": "^7.2.0",
"node-fetch": "2.1.2",
"nyc": "^14.1.1",
"rimraf": "2.6.2",
"sinon": "4.5.0",
"sinon-chai": "3.0.0",
"sinon-stub-promise": "4.0.0",
"webpack": "^4.43.0",
"webpack-cli": "^3.3.11"
},
"files": [
"dist",
"lib"
],
"scripts": {
"build": "npm run clean && babel --out-dir lib src",
"build:all": "npm run build && npm run build:umd && npm run build:umd:min",
"build:umd": "webpack --output-filename nnbSpotifyWrapper.umd.js",
"build:umd:min": "webpack --output-filename nnbSpotifyWrapper.umd.min.js -p",
"build:watch": "npm run build -- --watch",
"clean": "rimraf lib",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls",
"lint": "eslint src/*.js",
"lint:fix": "eslint --fix src/*.js",
"prepush": "npm run lint",
"test": "mocha tests/**/*.spec.js --require babel-register",
"test:coverage": "nyc npm test",
"test:tdd": "mocha tests/**/*.spec.js --require babel-register --watch"
},
"license": "MIT",
"nyc": {
"exclude": [
"tests/**"
],
"reporter": [
"html",
"text"
]
}
}