-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
52 lines (52 loc) · 1.39 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
{
"name": "spotify-web-sdk",
"keywords": [
"spotify",
"sdk",
"spotify-web-api"
],
"contributors": [
"José Renan <[email protected]> (https://github.com/JoseRenan)",
"Robson Junior <[email protected]> (https://github.com/JRobsonJr)"
],
"license": "MIT",
"version": "0.2.0",
"dependencies": {
"axios": "^0.18.0"
},
"scripts": {
"start": "ts-node src/start.ts",
"build": "rimraf build && tsc && webpack",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"test": "mocha -r ts-node/register test/*.test.ts"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"files": [
"build"
],
"types": "build/typings/index.d.ts",
"main": "build/index.js",
"devDependencies": {
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.5",
"@types/nock": "^9.3.0",
"chai": "^4.2.0",
"husky": "^1.1.2",
"mocha": "^5.2.0",
"nock": "^10.0.2",
"prettier": "^1.14.3",
"pretty-quick": "^1.8.0",
"rimraf": "^2.6.2",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"tslint-config-airbnb": "^5.11.0",
"tslint-config-prettier": "^1.15.0",
"typescript": "^3.0.3",
"webpack": "^4.25.1",
"webpack-cli": "^3.1.2"
}
}