-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.2 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
{
"name": "hearthstonejson-client",
"version": "1.17.1",
"description": "HearthstoneJSON client for browsers and Node",
"keywords": [
"hearthstone",
"hsjson"
],
"homepage": "https://github.com/HearthSim/hearthstonejson-client#readme",
"bugs": {
"url": "https://github.com/HearthSim/hearthstonejson-client/issues"
},
"license": "ISC",
"author": "Benedict Etzel <[email protected]>",
"main": "./dist/node/index",
"browser": "./dist/browser/index",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/HearthSim/hearthstonejson-client.git"
},
"scripts": {
"prepublishOnly": "rollup -c",
"build": "rollup -c",
"dev": "rollup -cw",
"format": "prettier --write \"{src/**/*.ts,*.js,*.ts}\"",
"lint": "prettier --list-different \"{src/**/*.ts,*.js,*.ts}\"",
"typecheck": "tsc"
},
"devDependencies": {
"node-fetch": "^2.0.0",
"prettier": "^1.10.2",
"rollup": "^0.55.3",
"rollup-plugin-commonjs": "^8.3.0",
"rollup-plugin-json": "^2.3.0",
"rollup-plugin-node-resolve": "^3.0.2",
"rollup-plugin-typescript": "^0.8.1",
"typescript": "^2.7.1"
},
"dependencies": {},
"sideEffects": false
}